first working bunch of plugins
This commit is contained in:
parent
dbba54cfd8
commit
eb1c7997a4
12 changed files with 223 additions and 0 deletions
19
lua/custom/plugins/copilot.lua
Normal file
19
lua/custom/plugins/copilot.lua
Normal 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
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue