mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-08 08:14:33 +02:00
tests/lsp: move language server tests to separate folder
This commit is contained in:
parent
0a294ad931
commit
d57c962d6e
4 changed files with 0 additions and 0 deletions
32
tests/test-sources/plugins/lsp/language-servers/nixd.nix
Normal file
32
tests/test-sources/plugins/lsp/language-servers/nixd.nix
Normal 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 = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue