Add support for dotnet + vscode config changes

- NVim: Omnisharp LSP added
- VSCode: gitgraph & dotnet specific configs + reorg configs
This commit is contained in:
Pratik Tripathy
2024-06-28 11:15:45 +05:30
parent 34e46e85ac
commit d2c56360d9
3 changed files with 44 additions and 23 deletions

View File

@@ -70,7 +70,23 @@ return {
},
bashls = { filetypes = { "sh", "bash", "zsh" } },
html = { filetypes = { "html", "twig", "hbs" } },
omnisharp = {},
omnisharp = {
-- DotNet = {
-- enablePackageRestore = true,
-- },
settings = {
FormattingOptions = {
OrganizeImports = true,
},
RoslynExtensionOptions = {
EnableAnalyzerSupport = true,
EnableImportCompletion = true,
},
Sdk = {
IncludePrereleases = false,
},
},
},
tsserver = {
settings = {
completions = {

View File

@@ -0,0 +1,3 @@
return {
-- { "OmniSharp/omnisharp-vim" },
}