comment out codium
This commit is contained in:
parent
60bb242159
commit
14a444237b
|
|
@ -12,6 +12,7 @@ return {
|
||||||
require('luasnip.loaders.from_vscode').lazy_load { paths = vim.fn.stdpath 'config' .. '/mysnippets/' }
|
require('luasnip.loaders.from_vscode').lazy_load { paths = vim.fn.stdpath 'config' .. '/mysnippets/' }
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
-- { 'Kaiser-Yang/blink-cmp-avante' },
|
||||||
},
|
},
|
||||||
|
|
||||||
-- use a release tag to download pre-built binaries
|
-- use a release tag to download pre-built binaries
|
||||||
|
|
@ -76,9 +77,23 @@ return {
|
||||||
-- Default list of enabled providers defined so that you can extend it
|
-- Default list of enabled providers defined so that you can extend it
|
||||||
-- elsewhere in your config, without redefining it, due to `opts_extend`
|
-- elsewhere in your config, without redefining it, due to `opts_extend`
|
||||||
sources = {
|
sources = {
|
||||||
default = { 'lsp', 'path', 'snippets', 'buffer', 'codeium' },
|
default = {
|
||||||
|
'lsp',
|
||||||
|
'path',
|
||||||
|
'snippets',
|
||||||
|
'buffer',
|
||||||
|
-- 'codeium',
|
||||||
|
-- 'avante',
|
||||||
|
},
|
||||||
providers = {
|
providers = {
|
||||||
codeium = { name = 'Codeium', module = 'codeium.blink', async = true },
|
-- codeium = { name = 'Codeium', module = 'codeium.blink', async = true },
|
||||||
|
-- avante = {
|
||||||
|
-- module = 'blink-cmp-avante',
|
||||||
|
-- name = 'Avante',
|
||||||
|
-- opts = {
|
||||||
|
-- -- options for blink-cmp-avante
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,15 +39,16 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
-- Codium:
|
||||||
'Exafunction/windsurf.nvim',
|
-- {
|
||||||
dependencies = {
|
-- 'Exafunction/windsurf.nvim',
|
||||||
'nvim-lua/plenary.nvim',
|
-- dependencies = {
|
||||||
'hrsh7th/nvim-cmp',
|
-- 'nvim-lua/plenary.nvim',
|
||||||
},
|
-- 'hrsh7th/nvim-cmp',
|
||||||
config = function()
|
-- },
|
||||||
require('codeium').setup {}
|
-- config = function()
|
||||||
vim.keymap.set('n', '<leader>tc', ':Codeium Toggle<CR>', { desc = 'Toggle Codeium' })
|
-- require('codeium').setup {}
|
||||||
end,
|
-- vim.keymap.set('n', '<leader>tc', ':Codeium Toggle<CR>', { desc = 'Toggle Codeium' })
|
||||||
},
|
-- end,
|
||||||
|
-- },
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue