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