diff options
Diffstat (limited to '.config/nvim/lua/plugins/whichkey.lua')
| -rw-r--r-- | .config/nvim/lua/plugins/whichkey.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/whichkey.lua b/.config/nvim/lua/plugins/whichkey.lua new file mode 100644 index 0000000..dc21eda --- /dev/null +++ b/.config/nvim/lua/plugins/whichkey.lua @@ -0,0 +1,10 @@ +return { + { + 'folke/which-key.nvim', + event = 'VeryLazy', + opts = { + sort = { 'alphanum' }, + icons = { separator = '→ ', group = '🞱 ' }, + }, + }, +} |