aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/whichkey.lua
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2026-02-24 19:41:37 +0000
committerJustine Smithies <justine@smithies.me.uk>2026-02-24 19:41:37 +0000
commitda863a8344e960fa6a896ffe24bfdc71aa88e288 (patch)
tree35ddd755ff46e05c89a541e997d4baebf261bf95 /.config/nvim/lua/plugins/whichkey.lua
parentfc43df4ded3dfef70b21daad37893dad7b03c560 (diff)
Removed Neovim
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)",
- },
- },
-}