mirror of
https://github.com/sadan4/nvim.git
synced 2025-06-08 04:43:03 -04:00
things
configure nvim-tree with binds + opts use signature from noice only add A-L/R arows to go back/forward
This commit is contained in:
parent
773903923d
commit
a713d9a7cf
6 changed files with 60 additions and 13 deletions
|
@ -117,7 +117,15 @@ require("notify").setup({
|
|||
on_open = makeCloseMap,
|
||||
on_close = removeCloseMap,
|
||||
})
|
||||
vim.api.nvim_create_user_command("Notifications", "Telescope notify", {
|
||||
force = true,
|
||||
})
|
||||
vim.notify = require("notify")
|
||||
vim.keymap.set({"n", "i"}, "<C-S-Space>", function()
|
||||
local api = require("noice.lsp.docs")
|
||||
local message = api.get("signature")
|
||||
api.hide(message)
|
||||
end)
|
||||
require("noice").setup({
|
||||
cmdline = {
|
||||
enabled = true, -- enables the Noice cmdline UI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue