61 lines
1.8 KiB
Lua
61 lines
1.8 KiB
Lua
-- Useful plugin to show you pending keybinds.
|
|
local function gh(repo) return 'https://github.com/' .. repo end
|
|
do
|
|
vim.pack.add { gh 'folke/which-key.nvim' }
|
|
require('which-key').setup {
|
|
-- delay between pressing a key and opening which-key (milliseconds)
|
|
-- this setting is independent of vim.o.timeoutlen
|
|
delay = 0,
|
|
icons = {
|
|
-- set icon mappings to true if you have a 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
|
|
-- default which-key.nvim defined Nerd Font icons, otherwise define a string table
|
|
keys = vim.g.have_nerd_font and {} or {
|
|
Up = '<Up> ',
|
|
Down = '<Down> ',
|
|
Left = '<Left> ',
|
|
Right = '<Right> ',
|
|
C = '<C-…> ',
|
|
M = '<M-…> ',
|
|
D = '<D-…> ',
|
|
S = '<S-…> ',
|
|
CR = '<CR> ',
|
|
Esc = '<Esc> ',
|
|
ScrollWheelDown = '<ScrollWheelDown> ',
|
|
ScrollWheelUp = '<ScrollWheelUp> ',
|
|
NL = '<NL> ',
|
|
BS = '<BS> ',
|
|
Space = '<Space> ',
|
|
Tab = '<Tab> ',
|
|
F1 = '<F1>',
|
|
F2 = '<F2>',
|
|
F3 = '<F3>',
|
|
F4 = '<F4>',
|
|
F5 = '<F5>',
|
|
F6 = '<F6>',
|
|
F7 = '<F7>',
|
|
F8 = '<F8>',
|
|
F9 = '<F9>',
|
|
F10 = '<F10>',
|
|
F11 = '<F11>',
|
|
F12 = '<F12>',
|
|
},
|
|
},
|
|
|
|
-- Document existing key chains
|
|
spec = {
|
|
{ '<leader>f', group = '[F]ind' },
|
|
{ '<leader>t', group = '[T]oggle' },
|
|
{ '<leader>D', group = '[D]ebug' },
|
|
{ '<leader>d', group = '[D]iagnostic' },
|
|
{ '<leader>b', group = '[B]uffer' },
|
|
{ '<leader>w', group = '[W]indow' },
|
|
{ '<leader>y', group = '[Y]ank' },
|
|
{ '<leader>S', group = '[S]ession' },
|
|
{ '<leader>g', group = 'Git', mode = { 'n', 'v' } },
|
|
{ '<leader>q', group = 'Quickfix' },
|
|
},
|
|
}
|
|
end
|