More work, LSP is not working yet need to figure that out more
This commit is contained in:
parent
713d128018
commit
764b890c58
32 changed files with 290 additions and 441 deletions
20
lua/plugins/util_which-key.lua
Normal file
20
lua/plugins/util_which-key.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
"folke/which-key.nvim",
|
||||
commit = "e271c28118998c93a14d189af3395812a1aa646c", -- May 22, 2023
|
||||
event = "VeryLazy",
|
||||
init = function()
|
||||
vim.o.timeout = true
|
||||
vim.o.timeoutlen = 300
|
||||
end,
|
||||
opts = {
|
||||
icons = { group = vim.g.icons_enabled and "" or "+", separator = "" },
|
||||
disable = { filetypes = { "TelescopePrompt" } },
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
},
|
||||
setup = function(_, opts)
|
||||
require("which-key").setup(opts)
|
||||
require("keymaps").which_key_register()
|
||||
end
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue