mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
28 lines
638 B
Nix
28 lines
638 B
Nix
{
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|