update nvim

This commit is contained in:
2023-02-03 16:08:09 +01:00
parent c5d8b5ef2b
commit 057b357f05
19 changed files with 218 additions and 16 deletions

13
plugins/which-key.lua Normal file
View File

@@ -0,0 +1,13 @@
return {
"folke/which-key.nvim",
config = function(plugin, opts)
plugin.default_config(opts)
local wk = require "which-key"
wk.register({
b = { name = "Buffer" },
}, {
mode = "n",
prefix = "<leader>",
})
end,
}