mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
37 lines
667 B
Nix
37 lines
667 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.codeium-nvim.enable = true;
|
||
|
};
|
||
|
|
||
|
enabled-by-cmp = {
|
||
|
plugins.nvim-cmp = {
|
||
|
enable = true;
|
||
|
|
||
|
sources = [
|
||
|
{name = "codeium";}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.codeium-nvim = {
|
||
|
enable = true;
|
||
|
|
||
|
configPath.__raw = "vim.fn.stdpath('cache') .. '/codeium/config.json'";
|
||
|
binPath.__raw = "vim.fn.stdpath('cache') .. '/codeium/bin'";
|
||
|
api = {
|
||
|
host = "server.codeium.com";
|
||
|
port = 443;
|
||
|
};
|
||
|
tools = {
|
||
|
uname = null;
|
||
|
uuidgen = null;
|
||
|
curl = null;
|
||
|
gzip = null;
|
||
|
languageServer = null;
|
||
|
};
|
||
|
wrapper = null;
|
||
|
};
|
||
|
};
|
||
|
}
|