summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/config/plugins/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/config/plugins/which-key.lua')
-rw-r--r--.config/nvim/lua/config/plugins/which-key.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/lua/config/plugins/which-key.lua b/.config/nvim/lua/config/plugins/which-key.lua
deleted file mode 100644
index 9e97f9f..0000000
--- a/.config/nvim/lua/config/plugins/which-key.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-return {
- "folke/which-key.nvim",
- event = "VeryLazy",
- opts = {
- win = {
- wo = {
- winblend = 0,
- },
- },
- preset = "helix",
- icons = {
- rules = false,
- },
- delay = 500,
- spec = {
- { "<leader>c", group = "Code", mode = { "n", "x" } },
- { "<leader>d", group = "Document" },
- { "<leader>g", group = "Git" },
- { "<leader>m", group = "Marks" },
- { "<leader>r", group = "Rename" },
- { "<leader>s", group = "Search" },
- { "<leader>t", group = "Toggle" },
- { "<leader>w", group = "Workspace" },
- { "<leader>l", group = "LSP" },
- },
- },
-}