mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
21 lines
472 B
Nix
21 lines
472 B
Nix
{
|
|
defaults = {
|
|
plugins.lsp = {
|
|
enable = true;
|
|
|
|
servers.omnisharp = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
enableEditorConfigSupport = true;
|
|
enableMsBuildLoadProjectsOnDemand = false;
|
|
enableRoslynAnalyzers = false;
|
|
organizeImportsOnFormat = false;
|
|
enableImportCompletion = false;
|
|
sdkIncludePrereleases = true;
|
|
analyzeOpenDocumentsOnly = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|