mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 10:44:34 +02:00
plugins/cmp-tabby: init
This commit is contained in:
parent
990a18ba23
commit
01c21406c6
4 changed files with 73 additions and 0 deletions
27
tests/test-sources/plugins/completion/cmp-tabby.nix
Normal file
27
tests/test-sources/plugins/completion/cmp-tabby.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.nvim-cmp = {
|
||||
enable = true;
|
||||
sources = [
|
||||
{name = "cmp_tabby";}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins = {
|
||||
nvim-cmp = {
|
||||
enable = true;
|
||||
sources = [
|
||||
{name = "cmp_tabby";}
|
||||
];
|
||||
};
|
||||
cmp-tabby = {
|
||||
host = "http://localhost:5000";
|
||||
maxLines = 100;
|
||||
runOnEveryKeyStroke = true;
|
||||
stop = ["\n"];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue