csharp-ls

This commit is contained in:
unknown
2025-01-17 11:23:03 +08:00
parent 9dcc2629ac
commit e5e9d292e9
3 changed files with 15 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
return {
{
"neovim/nvim-lspconfig",
config = function()
local lspconfig = require('lspconfig')
lspconfig.csharp_ls.setup {}
end
}
}
+1 -1
View File
@@ -101,7 +101,7 @@ return {
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "tsx", "typescript", "javascript", "html", "markdown" },
ensure_installed = { "tsx", "typescript", "javascript", "html", "markdown", "c_sharp" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },