add transparent-nvim and disable copilot

This commit is contained in:
Joshua Nussbaum 2024-08-10 18:20:55 -05:00 committed by Joshua Nussbaum
parent b0f5e73a23
commit f0d9e33ffb
3 changed files with 15 additions and 0 deletions

View File

@ -1,6 +1,15 @@
if true then
return {}
end
return {
'zbirenbaum/copilot-cmp',
config = function()
require('copilot_cmp').setup()
end,
opts = {
filetypes = {
['.'] = false,
go = true,
},
},
}

View File

@ -1,3 +1,6 @@
if true then
return {}
end
return {
'zbirenbaum/copilot.lua',
opts = {

View File

@ -0,0 +1,3 @@
return {
'xiyaowong/transparent.nvim',
}