plugins/cmp-tabby: init

This commit is contained in:
Gaetan Lepage 2024-01-22 14:00:24 +01:00 committed by Gaétan Lepage
parent 990a18ba23
commit 01c21406c6
4 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{
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"];
};
};
};
}