aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/whichkey.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/whichkey.lua')
-rw-r--r--.config/nvim/lua/plugins/whichkey.lua18
1 files changed, 0 insertions, 18 deletions
diff --git a/.config/nvim/lua/plugins/whichkey.lua b/.config/nvim/lua/plugins/whichkey.lua
deleted file mode 100644
index 9fadb97..0000000
--- a/.config/nvim/lua/plugins/whichkey.lua
+++ /dev/null
@@ -1,18 +0,0 @@
-return {
- "folke/which-key.nvim",
- event = "VeryLazy",
- opts = {
- -- your configuration comes here
- -- or leave it empty to use the default settings
- -- refer to the configuration section below
- },
- keys = {
- {
- "<leader>?",
- function()
- require("which-key").show({ global = false })
- end,
- desc = "Buffer Local Keymaps (which-key)",
- },
- },
-}