plugins/codeium-nvim: init

This commit is contained in:
Gaetan Lepage 2024-01-01 21:50:06 +01:00 committed by Gaétan Lepage
parent e1e417bff8
commit 1057ef93e3
4 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{
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;
};
};
}