diff options
Diffstat (limited to '.config/nvim/lua/plugins/which-key.lua')
-rw-r--r-- | .config/nvim/lua/plugins/which-key.lua | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/.config/nvim/lua/plugins/which-key.lua b/.config/nvim/lua/plugins/which-key.lua deleted file mode 100644 index 21048b9..0000000 --- a/.config/nvim/lua/plugins/which-key.lua +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | return { | ||
2 | { | ||
3 | "folke/which-key.nvim", | ||
4 | event = "VeryLazy", | ||
5 | init = function() | ||
6 | vim.o.timeout = true | ||
7 | vim.o.timeoutlen = 500 | ||
8 | end, | ||
9 | config = function() | ||
10 | local wk = require("which-key") | ||
11 | wk.setup() | ||
12 | end, | ||
13 | } | ||
14 | } | ||