mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
28 lines
441 B
Nix
28 lines
441 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.nvim-cmp = {
|
||
|
enable = true;
|
||
|
sources = [
|
||
|
{name = "cmp_tabby";}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins = {
|
||
|
nvim-cmp = {
|
||
|
enable = true;
|
||
|
sources = [
|
||
|
{name = "cmp_tabby";}
|
||
|
];
|
||
|
};
|
||
|
cmp-tabby = {
|
||
|
host = "http://localhost:5000";
|
||
|
maxLines = 100;
|
||
|
runOnEveryKeyStroke = true;
|
||
|
stop = ["\n"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|