fix: cleanup roslyn config

This commit is contained in:
Radu C. Martin 2024-12-12 11:54:21 +01:00
parent 86ae5be401
commit da9f022698
2 changed files with 7 additions and 2 deletions

View file

@ -44,7 +44,7 @@ require('lazy').setup({
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
dependencies = { dependencies = {
-- Automatically install LSPs and related tools to stdpath for Neovim -- Automatically install LSPs and related tools to stdpath for Neovim
{ 'williamboman/mason.nvim', config = true }, -- NOTE: Must be loaded before dependants { 'williamboman/mason.nvim', config = true, dependencies = { 'seblj/roslyn.nvim' } }, -- NOTE: Must be loaded before dependants
'williamboman/mason-lspconfig.nvim', 'williamboman/mason-lspconfig.nvim',
'WhoIsSethDaniel/mason-tool-installer.nvim', 'WhoIsSethDaniel/mason-tool-installer.nvim',

View file

@ -1,7 +1,12 @@
return { return {
'seblj/roslyn.nvim', 'seblj/roslyn.nvim',
event = { 'BufReadPre', 'BufNewFile' },
ft = 'cs', ft = 'cs',
opts = { opts = {
-- your configuration comes here; leave empty for default settings filewatching = false,
broad_search = true,
-- ignore_sln = function(sln)
-- return string.match(sln, 'Contactify.sln') ~= nil
-- end,
}, },
} }