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

28 lines
449 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;
settings.sources = [
2024-01-22 14:00:24 +01:00
{name = "cmp_tabby";}
];
};
};
defaults = {
plugins = {
cmp = {
2024-01-22 14:00:24 +01:00
enable = true;
settings.sources = [
2024-01-22 14:00:24 +01:00
{name = "cmp_tabby";}
];
};
cmp-tabby = {
host = "http://localhost:5000";
maxLines = 100;
runOnEveryKeyStroke = true;
stop = ["\n"];
};
};
};
}