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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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