This commit is contained in:
2025-08-05 17:01:27 +02:00
parent 3929be281b
commit f80e1dd013
13 changed files with 128 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
-- Display mappings
--
local wk = require 'which-key'
wk.add {
mode = { 'n', 'v', 'i' },
{ '<leader>E', group = 'Affichage' }, -- group
{ '<C-PageUp>', '<CMD>bprevious<CR>', desc = 'Buffer précédent', silent = true },
{ '<C-PageDown>', '<CMD>bnext<CR>', desc = 'Buffer suivant', silent = true },
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et