mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
40 lines
897 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|