nix-community.nixvim/tests/test-sources/plugins/cmp/cmp-tabby.nix

24 lines
436 B
Nix
Raw Normal View History

2024-01-22 14:00:24 +01:00
{
empty = {
plugins.cmp = {
2024-01-22 14:00:24 +01:00
enable = true;
2024-05-05 19:39:35 +02:00
settings.sources = [ { name = "cmp_tabby"; } ];
2024-01-22 14:00:24 +01:00
};
};
defaults = {
plugins = {
cmp = {
2024-01-22 14:00:24 +01:00
enable = true;
2024-05-05 19:39:35 +02:00
settings.sources = [ { name = "cmp_tabby"; } ];
2024-01-22 14:00:24 +01:00
};
cmp-tabby.settings = {
2024-01-22 14:00:24 +01:00
host = "http://localhost:5000";
max_lines = 100;
run_on_every_keystroke = true;
2024-05-05 19:39:35 +02:00
stop = [ "\n" ];
2024-01-22 14:00:24 +01:00
};
};
};
}