applied lsp config
This commit is contained in:
parent
ad2f7805d1
commit
ec3135a937
9 changed files with 145 additions and 146 deletions
16
lua/lspconf/roslyn.lua
Normal file
16
lua/lspconf/roslyn.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
local my_config = require("lspconf")
|
||||
|
||||
vim.lsp.config("roslyn", {
|
||||
on_attach = my_config.on_attach,
|
||||
capabilities = my_config.capabilities,
|
||||
settings = {
|
||||
["csharp|inlay_hints"] = {
|
||||
csharp_enable_inlay_hints_for_implicit_object_creation = true,
|
||||
csharp_enable_inlay_hints_for_implicit_variable_types = true,
|
||||
},
|
||||
["csharp|code_lens"] = {
|
||||
|
||||
dotnet_enable_references_code_lens = true,
|
||||
},
|
||||
},
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue