mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
31 lines
567 B
Nix
31 lines
567 B
Nix
{
|
|
empty = {
|
|
plugins.codeium-vim.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.codeium-vim = {
|
|
enable = true;
|
|
|
|
keymaps = {
|
|
clear = "<C-]>";
|
|
next = "<M-]>";
|
|
prev = "<M-[>";
|
|
accept = "<Tab>";
|
|
complete = "<M-Bslash>";
|
|
};
|
|
filetypes = {
|
|
help = false;
|
|
gitcommit = false;
|
|
gitrebase = false;
|
|
"." = false;
|
|
};
|
|
manual = false;
|
|
noMapTab = false;
|
|
idleDelay = 75;
|
|
render = true;
|
|
tabFallback = "\t";
|
|
disableBindings = true;
|
|
};
|
|
};
|
|
}
|