From 8bb9270e62d426eb1778408cfb832ac737009325 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Tue, 7 Oct 2025 21:33:07 -0500 Subject: [PATCH] fix: remove omnisharp settings in lsp config and rely on omnisharp.json instead --- lua/plugins/lsp.lua | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index 8f3ba7d..9a6d4c3 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -86,20 +86,6 @@ return { ["textDocument/definition"] = require("omnisharp_extended").handler, }, capabilities = capabilities, - settings = { - FormattingOptions = { - EnableEditorConfigSupport = true, - OrganizeImports = true, - }, - RoslynExtensionsOptions = { - DocumentAnalysisTimeoutMs = 30000, - EnableAnalyzersSupport = true, - EnableImportCompletion = true, - }, - Sdk = { - IncludePrereleases = true, - }, - }, }) vim.lsp.enable("omnisharp")