mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- fix: session, conform, vim-illuminate, todo-comments, nvim-navbuddy, lspconfig plugins NOT on vscode - new: codeium, obsidian.nvim - Add codeium autocomplete - fix: todo-comments: Search in hidden files (dotfiles) - fix: trouble: wasn't working earlier - new: Switch buffer with <alt-1>..<alt-9> - chore: Better keybindings
25 lines
658 B
Lua
25 lines
658 B
Lua
return {
|
|
-- codeium
|
|
{
|
|
"Exafunction/codeium.nvim",
|
|
cond = require("config.util").is_not_vscode(),
|
|
cmd = "Codeium",
|
|
build = ":Codeium Auth",
|
|
event = "InsertEnter",
|
|
opts = {
|
|
enable_cmp_source = vim.g.ai_cmp,
|
|
virtual_text = {
|
|
enabled = not vim.g.ai_cmp,
|
|
key_bindings = {
|
|
accept = false, -- handled by nvim-cmp / blink.cmp
|
|
next = "<M-]>",
|
|
prev = "<M-[>",
|
|
},
|
|
},
|
|
},
|
|
config = function()
|
|
require("codeium").setup({})
|
|
end,
|
|
},
|
|
}
|