2022-05-12 12:56:01 +00:00
|
|
|
local present, wk = pcall(require, "which-key")
|
|
|
|
|
|
|
|
if not present then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local options = {
|
|
|
|
|
|
|
|
-- NOTE : this mode_opts table isnt in the default whichkey config
|
|
|
|
-- Its added here so you could configure it in chadrc
|
|
|
|
|
|
|
|
mode_opts = {
|
|
|
|
n = {
|
|
|
|
mode = "n",
|
|
|
|
},
|
|
|
|
|
|
|
|
v = {
|
|
|
|
mode = "v",
|
|
|
|
},
|
|
|
|
|
|
|
|
i = {
|
|
|
|
mode = "i",
|
|
|
|
},
|
|
|
|
|
|
|
|
t = {
|
|
|
|
mode = "t",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
icons = {
|
|
|
|
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
|
|
|
|
separator = " ", -- symbol used between a key and it's label
|
|
|
|
group = "+", -- symbol prepended to a group
|
|
|
|
},
|
|
|
|
|
|
|
|
popup_mappings = {
|
|
|
|
scroll_down = "<c-d>", -- binding to scroll down inside the popup
|
|
|
|
scroll_up = "<c-u>", -- binding to scroll up inside the popup
|
|
|
|
},
|
|
|
|
|
|
|
|
window = {
|
|
|
|
border = "none", -- none/single/double/shadow
|
|
|
|
},
|
|
|
|
|
|
|
|
layout = {
|
|
|
|
spacing = 6, -- spacing between columns
|
|
|
|
},
|
|
|
|
|
|
|
|
hidden = { "<silent>", "<cmd>", "<Cmd>", "<CR>", "call", "lua", "^:", "^ " },
|
|
|
|
|
|
|
|
triggers_blacklist = {
|
|
|
|
-- list of mode / prefixes that should never be hooked by WhichKey
|
|
|
|
i = { "j", "k" },
|
|
|
|
v = { "j", "k" },
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2022-05-22 11:06:24 +00:00
|
|
|
options = nvchad.load_override(options, "folke/which-key.nvim")
|
|
|
|
|
2022-05-12 12:56:01 +00:00
|
|
|
local mappings = nvchad.load_config().mappings
|
2022-05-16 12:31:47 +00:00
|
|
|
local mapping_groups = { groups = vim.deepcopy(mappings.groups) }
|
2022-05-21 07:03:19 +00:00
|
|
|
|
2022-05-16 12:31:47 +00:00
|
|
|
mappings.disabled = nil
|
|
|
|
mappings.groups = nil
|
2022-05-12 12:56:01 +00:00
|
|
|
|
2022-05-24 23:16:08 +00:00
|
|
|
nvchad.whichKey_map(mappings, options)
|
|
|
|
nvchad.whichKey_map(mapping_groups, options)
|
2022-05-16 12:31:47 +00:00
|
|
|
|
2022-05-12 12:56:01 +00:00
|
|
|
wk.setup(options)
|