nix-community.nixvim/tests/test-sources/plugins/by-name/codeium-vim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
897 B
Nix
Raw Normal View History

2023-12-31 11:41:45 +01:00
{
empty = {
# For some reason, nvim hangs when using codeium-vim. After checking, it doesn't look like a bug though.
test.runNvim = false;
2023-12-31 11:41:45 +01:00
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;
2023-12-31 11:41:45 +01:00
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;
2023-12-31 11:41:45 +01:00
};
};
};
}