nix-community.nixvim/tests/test-sources/plugins/completion/cmp-tabby.nix
2024-06-18 20:19:14 +02:00

23 lines
436 B
Nix

{
empty = {
plugins.cmp = {
enable = true;
settings.sources = [ { name = "cmp_tabby"; } ];
};
};
defaults = {
plugins = {
cmp = {
enable = true;
settings.sources = [ { name = "cmp_tabby"; } ];
};
cmp-tabby.settings = {
host = "http://localhost:5000";
max_lines = 100;
run_on_every_keystroke = true;
stop = [ "\n" ];
};
};
};
}