ensure roslyn installed

This commit is contained in:
Nick Burt 2026-03-14 22:18:49 -05:00
parent ebc82857dc
commit 00bea79e44
1 changed files with 3 additions and 0 deletions

View File

@ -661,6 +661,7 @@ require('lazy').setup({
local ensure_installed = vim.tbl_keys(servers or {}) local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, { vim.list_extend(ensure_installed, {
-- You can add other tools here that you want Mason to install -- You can add other tools here that you want Mason to install
'roslyn',
}) })
require('mason-tool-installer').setup { ensure_installed = ensure_installed } require('mason-tool-installer').setup { ensure_installed = ensure_installed }
@ -702,6 +703,7 @@ require('lazy').setup({
} }
end end
end, end,
--TODO: need formating for c#/roslyn
formatters_by_ft = { formatters_by_ft = {
lua = { 'stylua' }, lua = { 'stylua' },
-- Conform can also run multiple formatters sequentially -- Conform can also run multiple formatters sequentially
@ -715,6 +717,7 @@ require('lazy').setup({
}, },
}, },
--TODO: need autocompletion for c#/roslyn
{ -- Autocompletion { -- Autocompletion
'saghen/blink.cmp', 'saghen/blink.cmp',
event = 'VimEnter', event = 'VimEnter',