added copilot
This commit is contained in:
parent
3babca60e7
commit
cada131f26
|
|
@ -4,6 +4,7 @@
|
||||||
-- See the kickstart.nvim README for more information
|
-- See the kickstart.nvim README for more information
|
||||||
|
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
|
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
vim.opt.wrap = false
|
vim.opt.wrap = false
|
||||||
|
|
||||||
|
|
@ -28,5 +29,10 @@ return {
|
||||||
neogit.setup {}
|
neogit.setup {}
|
||||||
end,
|
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
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue