mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-12-22 17:28:01 +00:00
[neovim] Add codeium plugin
This commit is contained in:
parent
2e6da3cddd
commit
2b1f625c70
@ -105,6 +105,7 @@ require("lazy").setup({
|
|||||||
"hrsh7th/cmp-nvim-lsp",
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{ "jcdickinson/codeium.nvim" },
|
||||||
|
|
||||||
-- Snippets
|
-- Snippets
|
||||||
{ "L3MON4D3/LuaSnip", version = "v1.*" },
|
{ "L3MON4D3/LuaSnip", version = "v1.*" },
|
||||||
|
@ -92,6 +92,7 @@ cmp.setup({
|
|||||||
nvim_lsp = "[lsp]",
|
nvim_lsp = "[lsp]",
|
||||||
luasnip = "[snip]",
|
luasnip = "[snip]",
|
||||||
buffer = "[local]",
|
buffer = "[local]",
|
||||||
|
codeium = "[AI]",
|
||||||
path = "",
|
path = "",
|
||||||
emoji = "",
|
emoji = "",
|
||||||
})[entry.source.name]
|
})[entry.source.name]
|
||||||
@ -103,6 +104,7 @@ cmp.setup({
|
|||||||
{ name = "luasnip" },
|
{ name = "luasnip" },
|
||||||
{ name = "buffer" },
|
{ name = "buffer" },
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
|
{ name = "codeium" },
|
||||||
},
|
},
|
||||||
confirm_opts = {
|
confirm_opts = {
|
||||||
behavior = cmp.ConfirmBehavior.Replace,
|
behavior = cmp.ConfirmBehavior.Replace,
|
||||||
|
1
.config/nvim/lua/plugins/codeium.lua
Normal file
1
.config/nvim/lua/plugins/codeium.lua
Normal file
@ -0,0 +1 @@
|
|||||||
|
require("codeium").setup({})
|
@ -1,4 +1,5 @@
|
|||||||
require("plugins.cmp")
|
require("plugins.cmp")
|
||||||
|
require("plugins.codeium")
|
||||||
require("plugins.telescope")
|
require("plugins.telescope")
|
||||||
require("plugins.starter")
|
require("plugins.starter")
|
||||||
require("plugins.treesitter")
|
require("plugins.treesitter")
|
||||||
|
Loading…
Reference in New Issue
Block a user