feat: with copilot

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-07-04 19:05:19 +02:00
parent a86c163288
commit 5e50a8a432
7 changed files with 79 additions and 46 deletions

9
lua/plugins/nvim-cmp.lua Normal file
View File

@@ -0,0 +1,9 @@
return {
"hrsh7th/nvim-cmp",
opts = function(_, opts)
local cmp = require("cmp")
opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "copilot", group_index = 2 } }))
return opts
end
}