nix-community.nixvim/tests/test-sources/plugins/cmp/cmp-tabby.nix
Matt Sturgeon ad85cd760e
plugins/completion: move to by-name
- Move nvim-cmp to plugins/cmp
- Move other completion plugins to plugins/by-name
2024-09-09 11:50:40 +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" ];
};
};
};
}