diff options
Diffstat (limited to 'which-key.lua')
| -rw-r--r-- | which-key.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/which-key.lua b/which-key.lua new file mode 100644 index 0000000..cc9e55a --- /dev/null +++ b/which-key.lua @@ -0,0 +1,18 @@ +return { + -- Web icons + { + "nvim-tree/nvim-web-devicons", + }, + + -- which-key.nvim: shows available keybindings + { + "folke/which-key.nvim", + event = "VeryLazy", + config = function() + require("which-key").setup({ + plugins = { spelling = true }, + win = { border = "rounded" }, + }) + end, + }, +} |
