nix-community.nixvim/tests/test-sources/plugins/by-name/codeium-nvim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
885 B
Nix
Raw Normal View History

2024-01-01 21:50:06 +01:00
{
empty = {
plugins.codeium-nvim.enable = true;
};
enabled-by-cmp = {
plugins.cmp = {
2024-01-01 21:50:06 +01:00
enable = true;
settings.sources = [ { name = "codeium"; } ];
2024-01-01 21:50:06 +01:00
};
};
defaults = {
plugins.codeium-nvim = {
enable = true;
settings = {
manager_path = null;
bin_path.__raw = "vim.fn.stdpath('cache') .. '/codeium/bin'";
config_path.__raw = "vim.fn.stdpath('cache') .. '/codeium/config.json'";
language_server_download_url = "https://github.com";
api = {
host = "server.codeium.com";
port = "443";
};
enterprise_mode = null;
detect_proxy = null;
tools = { };
wrapper = null;
enable_chat = false;
enable_local_search = false;
enable_index_service = false;
search_max_workspace_file_count = 5000;
2024-01-01 21:50:06 +01:00
};
};
};
}