aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/lua/plugins/which-key.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
commit0f6cee92221dc517bd756083e260dd9373851b82 (patch)
treec6d929fa5832d17a2d1fe3c85744bae7621ed447 /common/nvim/lua/plugins/which-key.lua
parent3cf613ec7c90ab4933728b0f19e49b0c955c17bb (diff)
downloaddotfiles-0f6cee92221dc517bd756083e260dd9373851b82.tar.gz
dotfiles-0f6cee92221dc517bd756083e260dd9373851b82.zip
Moved files to common/
Diffstat (limited to 'common/nvim/lua/plugins/which-key.lua')
-rwxr-xr-xcommon/nvim/lua/plugins/which-key.lua53
1 files changed, 0 insertions, 53 deletions
diff --git a/common/nvim/lua/plugins/which-key.lua b/common/nvim/lua/plugins/which-key.lua
deleted file mode 100755
index 10015aa..0000000
--- a/common/nvim/lua/plugins/which-key.lua
+++ /dev/null
@@ -1,53 +0,0 @@
-local M = {}
-
-function M.setup()
- local ok, wk = pcall(require, 'which-key')
- if not ok then
- return false
- end
-
- -- Basic configuration
- wk.setup({
- plugins = {
- marks = true,
- registers = true,
- spelling = { enabled = true, suggestions = 20 },
- presets = {
- operators = true,
- motions = true,
- text_objects = true,
- windows = true,
- nav = true,
- z = true,
- g = true,
- },
- },
- --window = {
- -- border = "none",
- -- position = "bottom",
- -- margin = { 1, 0, 1, 0 },
- -- padding = { 2, 2, 2, 2 },
- -- winblend = 0
- --},
- --layout = {
- -- height = { min = 4, max = 25 },
- -- width = { min = 20, max = 50 },
- -- spacing = 3,
- -- align = "left"
- --},
- --ignore_missing = false,
- --hidden = { "<silent>", "<cmd>", "<Cmd>", "<CR>", "call", "lua", "^:", "^ " },
- --show_help = true,
- --triggers = "<leader>",
- --triggers_blacklist = {
- -- i = { "j", "k" },
- -- v = { "j", "k" },
- --}
- })
-
-
-
- return true
-end
-
-return M