nix-community.nixvim/tests/test-sources/plugins/lsp/omnisharp.nix

22 lines
472 B
Nix
Raw Normal View History

{
defaults = {
plugins.lsp = {
enable = true;
servers.omnisharp = {
enable = true;
settings = {
enableEditorConfigSupport = true;
enableMsBuildLoadProjectsOnDemand = false;
enableRoslynAnalyzers = false;
organizeImportsOnFormat = false;
enableImportCompletion = false;
sdkIncludePrereleases = true;
analyzeOpenDocumentsOnly = true;
};
};
};
};
}