added cs
This commit is contained in:
parent
87bea223e7
commit
d516aa3050
8
init.lua
8
init.lua
|
|
@ -175,6 +175,14 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'seblyng/roslyn.nvim',
|
||||||
|
---@module 'roslyn.config'
|
||||||
|
---@type RoslynNvimConfig
|
||||||
|
opts = {
|
||||||
|
-- your configuration comes here; leave empty for default settings
|
||||||
|
},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
local a = ''
|
local a = ''
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,15 @@
|
||||||
return {
|
return {
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{ 'mason-org/mason.nvim', opts = {} },
|
{
|
||||||
|
'mason-org/mason.nvim',
|
||||||
|
opts = {
|
||||||
|
registries = {
|
||||||
|
'github:mason-org/mason-registry',
|
||||||
|
'github:Crashdummyy/mason-registry',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
'mason-org/mason-lspconfig.nvim',
|
'mason-org/mason-lspconfig.nvim',
|
||||||
{ 'j-hui/fidget.nvim', opts = {
|
{ 'j-hui/fidget.nvim', opts = {
|
||||||
notification = {
|
notification = {
|
||||||
|
|
@ -136,6 +144,7 @@ return {
|
||||||
},
|
},
|
||||||
gopls = {},
|
gopls = {},
|
||||||
rust_analyzer = {},
|
rust_analyzer = {},
|
||||||
|
roslyn = {},
|
||||||
}
|
}
|
||||||
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, {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue