add transparent-nvim and disable copilot
This commit is contained in:
parent
6f3dac791b
commit
8106376332
|
@ -1,6 +1,15 @@
|
||||||
|
if true then
|
||||||
|
return {}
|
||||||
|
end
|
||||||
return {
|
return {
|
||||||
'zbirenbaum/copilot-cmp',
|
'zbirenbaum/copilot-cmp',
|
||||||
config = function()
|
config = function()
|
||||||
require('copilot_cmp').setup()
|
require('copilot_cmp').setup()
|
||||||
end,
|
end,
|
||||||
|
opts = {
|
||||||
|
filetypes = {
|
||||||
|
['.'] = false,
|
||||||
|
go = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
if true then
|
||||||
|
return {}
|
||||||
|
end
|
||||||
return {
|
return {
|
||||||
'zbirenbaum/copilot.lua',
|
'zbirenbaum/copilot.lua',
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
return {
|
||||||
|
'xiyaowong/transparent.nvim',
|
||||||
|
}
|
Loading…
Reference in New Issue