added copilot

This commit is contained in:
Adam McNeil 2025-10-07 07:37:07 -05:00
parent 3babca60e7
commit cada131f26
1 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,7 @@
-- See the kickstart.nvim README for more information
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.wrap = false
@ -28,5 +29,10 @@ return {
neogit.setup {}
end,
},
{
'github/copilot.vim',
cmd = 'Copilot', -- Load Copilot only when the 'Copilot' command is invoked
event = 'InsertEnter', -- Load Copilot when entering insert mode
config = true, -- Automatically run the default setup
},
}