new-main #1

Open
SailReal wants to merge 139 commits from new-main into main
1 changed files with 47 additions and 49 deletions
Showing only changes of commit 24d368f9ff - Show all commits

View File

@ -274,8 +274,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,
@ -311,11 +310,9 @@ require('lazy').setup({
F11 = '<F11>',
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' },
@ -323,8 +320,9 @@ 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.