NIVM/lua/plugins/configs/UI/whichkey.lua
Robert Morrison fb537df11b chore(init): Initial working version
Create and push an initial working version of this repo before I change
things on this machine

Signed-off-by: Robert Morrison <robert@closedless.xyz>
2023-09-10 22:22:30 +01:00

47 lines
735 B
Lua

M = {}
M.config = {
plugins = {
marks = true,
registers = true,
spelling = {
enabled = true,
suggestions = 10,
},
presets = {
operators = true,
motions = true,
text_objects = true,
windows = true,
nav = true,
z = true,
g = true,
},
},
icons = {
breadcrumb = '󰇘',
separator = '󰇼',
group = '󰋃',
},
window = {
border = 'single',
position = 'bottom',
},
-- ignore_missing = true,
disable = {
filetypes = { 'TelescopePrompt' },
},
}
M.default_bindings = {
['<leader>w'] = { name = '+vimwiki' },
['<leader>l'] = { name = '+LSP' },
['<leader>c'] = { name = '+NerdComment' },
['<leader>f'] = { name = '+File' },
['<leader>t'] = { name = '+telescope' },
}
return M