summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/which-key.lua
diff options
context:
space:
mode:
authorYigit Sever2024-02-17 18:48:58 +0300
committerYigit Sever2024-02-17 18:49:52 +0300
commita133fba8e384d576f5b3e027d871e466cc021003 (patch)
treeac0e0b98a27cfe700a9b7c0e87a319b0d92e095f /.config/nvim/lua/plugins/which-key.lua
parent6024a0b46d548c5f9db0d69fa2c4572b0c6d7508 (diff)
downloaddotfiles-a133fba8e384d576f5b3e027d871e466cc021003.tar.gz
dotfiles-a133fba8e384d576f5b3e027d871e466cc021003.tar.bz2
dotfiles-a133fba8e384d576f5b3e027d871e466cc021003.zip
nvim: delete which-key
Diffstat (limited to '.config/nvim/lua/plugins/which-key.lua')
-rw-r--r--.config/nvim/lua/plugins/which-key.lua14
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 @@
1return {
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}