first working bunch of plugins

This commit is contained in:
Plamen Kutinchev 2024-03-25 21:25:48 +02:00
parent dbba54cfd8
commit eb1c7997a4
12 changed files with 223 additions and 0 deletions

View file

@ -0,0 +1,19 @@
return {
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup({
suggestion = { enabled = false },
panel = { enabled = false },
})
end,
},
{
"zbirenbaum/copilot-cmp",
config = function ()
require("copilot_cmp").setup()
end
},
}