nix-community.nixvim/tests/test-sources/plugins/completion/codeium-nvim.nix
2024-05-05 22:00:40 +02:00

34 lines
659 B
Nix

{
empty = {
plugins.codeium-nvim.enable = true;
};
enabled-by-cmp = {
plugins.cmp = {
enable = true;
settings.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;
};
};
}