nix-community.nixvim/tests/test-sources/plugins/by-name/cmp-tabby/default.nix
2024-12-18 18:42:03 +01: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" ];
};
};
};
}