plugins/lsp: add omnisharp language server

Co-authored-by: garaiza-93 <57430880+garaiza-93@users.noreply.github.com>
This commit is contained in:
Gaetan Lepage 2023-07-20 08:09:49 +02:00 committed by Gaétan Lepage
parent f1aaef47a9
commit 54ebe3b0ee
4 changed files with 77 additions and 1 deletions

View file

@ -0,0 +1,21 @@
{
defaults = {
plugins.lsp = {
enable = true;
servers.omnisharp = {
enable = true;
settings = {
enableEditorConfigSupport = true;
enableMsBuildLoadProjectsOnDemand = false;
enableRoslynAnalyzers = false;
organizeImportsOnFormat = false;
enableImportCompletion = false;
sdkIncludePrereleases = true;
analyzeOpenDocumentsOnly = true;
};
};
};
};
}