disable copilot

This commit is contained in:
Joshua Nussbaum 2024-09-26 19:16:01 -05:00
parent e8cbce8995
commit 1f3a68ca42
3 changed files with 8 additions and 11 deletions

View file

@ -190,17 +190,6 @@ require('lazy').setup({
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
config = function() -- This is the function that runs, AFTER loading
require('which-key').setup()
-- Document existing key chains
require('which-key').add {
{ '<leader>c', group = '[C]ode' },
{ '<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' } },
}
end,
},