This commit is contained in:
2025-08-15 19:33:16 +02:00
parent be77967e94
commit 6c3434aceb
21 changed files with 280 additions and 97 deletions

View File

@@ -0,0 +1,25 @@
-- Key mappings groups
--
local wk = require 'which-key'
wk.add {
{
{
mode = { 'n' },
{ '<leader>s', group = '[s]earch' },
{ '<leader>t', group = '[t]oggles' },
},
{
mode = { 'n', 'v' },
{ '<leader>e', group = '[e]xplore' },
{ '<leader>b', group = '[b]uffers' },
{ '<leader>g', group = '[g]it hunk' },
},
},
{},
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et