mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/codeium-nvim: init
This commit is contained in:
parent
e1e417bff8
commit
1057ef93e3
4 changed files with 127 additions and 0 deletions
36
tests/test-sources/plugins/completion/codeium-nvim.nix
Normal file
36
tests/test-sources/plugins/completion/codeium-nvim.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue