nix-community.nixvim/tests/test-sources/plugins/lsp/language-servers/dartls.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
638 B
Nix
Raw Normal View History

2024-05-02 23:12:36 +02:00
{
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;
};
};
};
};
}