nvim: Use which-key

This commit is contained in:
2024-07-10 10:38:00 +02:00
parent db737efb58
commit 6880ff625b
4 changed files with 44 additions and 30 deletions

View File

@ -9,6 +9,19 @@ require("lazy").setup({
'folke/todo-comments.nvim',
dependencies = { "nvim-lua/plenary.nvim" },
},
{
"folke/which-key.nvim",
event = "VeryLazy",
init = function()
vim.o.timeout = true
vim.o.timeoutlen = 300
end,
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
},
-- -- language server stuff
{'williamboman/mason.nvim' },