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,32 @@
{
example = {
plugins.lsp = {
enable = true;
servers.nixd = {
enable = true;
settings = {
eval = {
target = {
args = ["foo" "bar"];
installable = "";
};
depth = 0;
workers = 3;
};
formatting = {
command = "nixpkgs-fmt";
};
options = {
enable = true;
target = {
args = ["yes" "no" "maybe"];
installable = "";
};
};
};
};
};
};
}