tests/lsp: move language server tests to separate folder

This commit is contained in:
Gaetan Lepage 2024-05-02 22:52:59 +02:00 committed by Gaétan Lepage
parent 0a294ad931
commit d57c962d6e
4 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{
example = {
plugins.lsp = {
enable = true;
servers.ccls = {
enable = true;
initOptions = {
cache = {
directory = ".ccls-cache";
format = "binary";
retainInMemory = 1;
};
clang = {
extraArgs = [];
excludeArgs = ["-frounding-math"];
pathMappings = ["/remote/>/host/"];
resourceDir = "";
};
client = {
snippetSupport = true;
};
completion = {
placeholder = false;
detailedLabel = true;
filterAndSort = true;
};
compilationDatabaseDirectory = "out/release";
diagnostics = {
onOpen = 0;
onChange = 1000;
onSave = 0;
};
index = {
threads = 0;
comments = 2;
multiVersion = 0;
multiVersionBlacklist = ["^/usr/include"];
initialBlacklist = ["."];
onChange = false;
trackDependency = 2;
};
};
};
};
};
}