mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
23 lines
436 B
Nix
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" ];
|
|
};
|
|
};
|
|
};
|
|
}
|