fix: fix which-key formatting

This commit is contained in:
Radu C. Martin 2025-01-30 16:31:17 +01:00
parent bf8bd33276
commit 20d5eb322f

View file

@ -1,68 +1,69 @@
-- NOTE: Plugins can also be configured to run Lua code when they are loaded. -- NOTE: Plugins can also be configured to run Lua code when they are loaded.
-- --
-- This is often very useful to both group configuration, as well as handle -- This is often very useful to both group configuration, as well as handle
-- lazy loading plugins that don't need to be loaded immediately at startup. -- lazy loading plugins that don't need to be loaded immediately at startup.
-- --
-- For example, in the following configuration, we use: -- For example, in the following configuration, we use:
-- event = 'VimEnter' -- event = 'VimEnter'
-- --
-- which loads which-key before all the UI elements are loaded. Events can be -- which loads which-key before all the UI elements are loaded. Events can be
-- normal autocommands events (`:help autocmd-events`). -- normal autocommands events (`:help autocmd-events`).
-- --
-- Then, because we use the `config` key, the configuration only runs -- Then, because we use the `config` key, the configuration only runs
-- after the plugin has been loaded: -- after the plugin has been loaded:
-- config = function() ... end -- config = function() ... end
return { -- Useful plugin to show you pending keybinds. return { -- Useful plugin to show you pending keybinds.
'folke/which-key.nvim', 'folke/which-key.nvim',
event = 'VimEnter', -- Sets the loading event to 'VimEnter' event = 'VimEnter', -- Sets the loading event to 'VimEnter'
opts = { opts = {
icons = { icons = {
-- set icon mappings to true if you have a Nerd Font -- set icon mappings to true if you have a Nerd Font
mappings = vim.g.have_nerd_font, mappings = vim.g.have_nerd_font,
-- If you are using a Nerd Font: set icons.keys to an empty table which will use the -- If you are using a Nerd Font: set icons.keys to an empty table which will use the
-- default which-key.nvim defined Nerd Font icons, otherwise define a string table -- default which-key.nvim defined Nerd Font icons, otherwise define a string table
keys = vim.g.have_nerd_font and {} or { keys = vim.g.have_nerd_font and {} or {
Up = '<Up> ', Up = '<Up> ',
Down = '<Down> ', Down = '<Down> ',
Left = '<Left> ', Left = '<Left> ',
Right = '<Right> ', Right = '<Right> ',
C = '<C-…> ', C = '<C-…> ',
M = '<M-…> ', M = '<M-…> ',
D = '<D-…> ', D = '<D-…> ',
S = '<S-…> ', S = '<S-…> ',
CR = '<CR> ', CR = '<CR> ',
Esc = '<Esc> ', Esc = '<Esc> ',
ScrollWheelDown = '<ScrollWheelDown> ', ScrollWheelDown = '<ScrollWheelDown> ',
ScrollWheelUp = '<ScrollWheelUp> ', ScrollWheelUp = '<ScrollWheelUp> ',
NL = '<NL> ', NL = '<NL> ',
BS = '<BS> ', BS = '<BS> ',
Space = '<Space> ', Space = '<Space> ',
Tab = '<Tab> ', Tab = '<Tab> ',
F1 = '<F1>', F1 = '<F1>',
F2 = '<F2>', F2 = '<F2>',
F3 = '<F3>', F3 = '<F3>',
F4 = '<F4>', F4 = '<F4>',
F5 = '<F5>', F5 = '<F5>',
F6 = '<F6>', F6 = '<F6>',
F7 = '<F7>', F7 = '<F7>',
F8 = '<F8>', F8 = '<F8>',
F9 = '<F9>', F9 = '<F9>',
F10 = '<F10>', F10 = '<F10>',
F11 = '<F11>', F11 = '<F11>',
F12 = '<F12>', F12 = '<F12>',
},
},
-- Document existing key chains
spec = {
{ '<leader>c', group = '[C]ode', mode = { 'n', 'x' } },
{ '<leader>d', group = '[D]ocument' },
{ '<leader>r', group = '[R]ename' },
{ '<leader>s', group = '[S]earch' },
{ '<leader>w', group = '[W]orkspace' },
{ '<leader>t', group = '[T]oggle' },
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } },
}, },
}, },
}
-- Document existing key chains
spec = {
{ '<leader>c', group = '[C]ode', mode = { 'n', 'x' } },
{ '<leader>d', group = '[D]ocument' },
{ '<leader>r', group = '[R]ename' },
{ '<leader>s', group = '[S]earch' },
{ '<leader>w', group = '[W]orkspace' },
{ '<leader>t', group = '[T]oggle' },
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } },
{ '<leader>l', group = '[L]ocal' },
},
},
}