mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/completion: move to by-name
- Move nvim-cmp to plugins/cmp - Move other completion plugins to plugins/by-name
This commit is contained in:
parent
3211a63306
commit
ad85cd760e
36 changed files with 2 additions and 9 deletions
|
@ -1,38 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.codeium-nvim.enable = true;
|
||||
};
|
||||
|
||||
enabled-by-cmp = {
|
||||
plugins.cmp = {
|
||||
enable = true;
|
||||
|
||||
settings.sources = [ { name = "codeium"; } ];
|
||||
};
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue