plugins/codeium-nvim: migrate to mkNeovimPlugin

This commit is contained in:
Austin Horstman 2024-09-03 21:23:27 -05:00
parent c8328e6d59
commit b072a4a68f
No known key found for this signature in database
3 changed files with 103 additions and 66 deletions

View file

@ -15,20 +15,24 @@
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;
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;
};
tools = {
uname = null;
uuidgen = null;
curl = null;
gzip = null;
languageServer = null;
};
wrapper = null;
};
};
}