xget copilot working in neovim

This commit is contained in:
frumsy 2023-11-18 13:30:11 -05:00
parent ab1287ec47
commit 65e81d3c0b
2 changed files with 11 additions and 1 deletions

View file

@ -2,4 +2,11 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
"github/copilot.vim",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup({})
end,
}