fix: cleanup roslyn config
This commit is contained in:
parent
86ae5be401
commit
da9f022698
2 changed files with 7 additions and 2 deletions
|
@ -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',
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue