Add csharp and show hidden files in neotree

This commit is contained in:
Pablu23
2024-07-08 22:44:04 +02:00
parent 4bd04df779
commit 15585a2f55
3 changed files with 43 additions and 21 deletions

View File

@@ -22,6 +22,7 @@ return {
"pyright",
"ols",
"clangd",
"omnisharp",
},
handlers = {
function(server_name)
@@ -29,6 +30,16 @@ return {
capabilities = capabilities,
handlers = handlers
}
end,
clangd = function()
local lspconfig = require("lspconfig")
lspconfig.clangd.setup({
capabilities = capabilities,
handlers = handlers,
init_options = {
fallbackFlags = { '--std=c++20' }
},
})
end
}
})