Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Adrian Bakke 2024-08-27 09:38:45 +02:00
commit bcf605efa2
1 changed files with 39 additions and 41 deletions

View File

@ -275,8 +275,7 @@ require('lazy').setup({
{ -- Useful plugin to show you pending keybinds.
'folke/which-key.nvim',
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
config = function() -- This is the function that runs, AFTER loading
require('which-key').setup {
opts = {
icons = {
-- set icon mappings to true if you have a Nerd Font
mappings = vim.g.have_nerd_font,
@ -313,10 +312,9 @@ require('lazy').setup({
F12 = '<F12>',
},
},
}
-- Document existing key chains
require('which-key').add {
spec = {
{ '<leader>c', group = '[C]ode', mode = { 'n', 'x' } },
{ '<leader>d', group = '[D]ocument' },
{ '<leader>r', group = '[R]ename' },
@ -324,8 +322,8 @@ require('lazy').setup({
{ '<leader>w', group = '[W]orkspace' },
{ '<leader>t', group = '[T]oggle' },
{ '<leader>h', group = 'Git [H]unk', mode = { 'n', 'v' } },
}
end,
},
},
},
-- NOTE: Plugins can specify dependencies.