mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/lsp/dartls: add test
This commit is contained in:
parent
20aea5cd7a
commit
fd134f84dd
1 changed files with 28 additions and 0 deletions
28
tests/test-sources/plugins/lsp/language-servers/dartls.nix
Normal file
28
tests/test-sources/plugins/lsp/language-servers/dartls.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
example = {
|
||||
plugins.lsp = {
|
||||
enable = true;
|
||||
|
||||
servers.dartls = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
analysisExcludedFolders = [
|
||||
"foo/bar"
|
||||
"./hello"
|
||||
"../bye/see/you/next/time"
|
||||
];
|
||||
enableSdkFormatter = false;
|
||||
lineLength = 100;
|
||||
completeFunctionCalls = true;
|
||||
showTodos = true;
|
||||
renameFilesWithClasses = "prompt";
|
||||
enableSnippets = true;
|
||||
updateImportsOnRename = true;
|
||||
documentation = "full";
|
||||
includeDependenciesInWorkspaceSymbols = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue