added roslyn
This commit is contained in:
parent
afd642e367
commit
455fdbeca5
2 changed files with 24 additions and 9 deletions
6
lua/plugin/mason.lua
Normal file
6
lua/plugin/mason.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
require("mason").setup({
|
||||||
|
registries = {
|
||||||
|
"github:mason-org/mason-registry",
|
||||||
|
"github:Crashdummyy/mason-registry",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
@ -60,15 +60,24 @@ require("lazy").setup({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'stevearc/oil.nvim',
|
"seblyng/roslyn.nvim",
|
||||||
---@module 'oil'
|
ft = "cs",
|
||||||
---@type oil.SetupOpts
|
-- @module 'roslyn.config'
|
||||||
opts = {},
|
-- @type RoslynNvimConfig
|
||||||
-- Optional dependencies
|
opts = {
|
||||||
dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
-- your configuration comes here; leave empty for default settings
|
||||||
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
|
},
|
||||||
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
|
},
|
||||||
lazy = false,
|
{
|
||||||
|
'stevearc/oil.nvim',
|
||||||
|
---@module 'oil'
|
||||||
|
---@type oil.SetupOpts
|
||||||
|
opts = {},
|
||||||
|
-- Optional dependencies
|
||||||
|
dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
||||||
|
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
|
||||||
|
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
|
||||||
|
lazy = false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ThePrimeagen/harpoon",
|
"ThePrimeagen/harpoon",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue