nix-community.nixvim/tests/test-sources/plugins/by-name/codeium-vim/default.nix
Matt Sturgeon ad85cd760e
plugins/completion: move to by-name
- Move nvim-cmp to plugins/cmp
- Move other completion plugins to plugins/by-name
2024-09-09 11:50:40 +01:00

40 lines
897 B
Nix

{
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;
};
};
};
}