You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
473 B
Lua
22 lines
473 B
Lua
return {
|
|
'folke/which-key.nvim',
|
|
event = 'VimEnter',
|
|
opts = {
|
|
preset = 'modern',
|
|
icons = {
|
|
keys = {
|
|
BS = ' ',
|
|
},
|
|
},
|
|
},
|
|
keys = {
|
|
{ '<leader>c', group = '[C]ode' },
|
|
{ '<leader>d', group = '[D]ebugger' },
|
|
{ '<leader>h', group = '[H]arpoon' },
|
|
{ '<leader>r', group = '[R]ename' },
|
|
{ '<leader>s', group = '[S]earch' },
|
|
{ '<leader>t', group = '[T]rouble' },
|
|
{ '<leader>w', group = '[W]orkspace' },
|
|
},
|
|
}
|