mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +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,40 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
# For some reason, nvim hangs when using codeium-vim. After checking, it doesn't look like a bug though.
|
||||
test.runNvim = false;
|
||||
|
||||
plugins.codeium-vim.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
# For some reason, nvim hangs when using codeium-vim. After checking, it doesn't look like a bug though.
|
||||
test.runNvim = false;
|
||||
|
||||
plugins.codeium-vim = {
|
||||
enable = true;
|
||||
|
||||
keymaps = {
|
||||
clear = "<C-]>";
|
||||
next = "<M-]>";
|
||||
prev = "<M-[>";
|
||||
accept = "<Tab>";
|
||||
complete = "<M-Bslash>";
|
||||
};
|
||||
|
||||
settings = {
|
||||
filetypes = {
|
||||
help = false;
|
||||
gitcommit = false;
|
||||
gitrebase = false;
|
||||
"." = false;
|
||||
};
|
||||
manual = false;
|
||||
no_map_tab = false;
|
||||
idle_delay = 75;
|
||||
render = true;
|
||||
tab_fallback = "\t";
|
||||
disable_bindings = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue