mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/codeium-nvim: migrate to mkNeovimPlugin
This commit is contained in:
parent
c8328e6d59
commit
b072a4a68f
3 changed files with 103 additions and 66 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue