diff options
author | Yigit Sever | 2024-02-17 18:48:58 +0300 |
---|---|---|
committer | Yigit Sever | 2024-02-17 18:49:52 +0300 |
commit | a133fba8e384d576f5b3e027d871e466cc021003 (patch) | |
tree | ac0e0b98a27cfe700a9b7c0e87a319b0d92e095f /.config/nvim/lua/plugins | |
parent | 6024a0b46d548c5f9db0d69fa2c4572b0c6d7508 (diff) | |
download | dotfiles-a133fba8e384d576f5b3e027d871e466cc021003.tar.gz dotfiles-a133fba8e384d576f5b3e027d871e466cc021003.tar.bz2 dotfiles-a133fba8e384d576f5b3e027d871e466cc021003.zip |
nvim: delete which-key
Diffstat (limited to '.config/nvim/lua/plugins')
-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 | } | ||