mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/codeium-vim: init
This commit is contained in:
parent
7801be57d6
commit
2c497de6fb
3 changed files with 210 additions and 0 deletions
31
tests/test-sources/plugins/completion/codeium-vim.nix
Normal file
31
tests/test-sources/plugins/completion/codeium-vim.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue