Fix double lsp

This commit is contained in:
2025-09-18 23:18:19 +02:00
parent e2a6c21f81
commit e4cb69ad82
5 changed files with 34 additions and 19 deletions

View File

@@ -7,10 +7,14 @@ return {
local configs = require("nvim-treesitter.configs")
configs.setup({
sync_install = true,
ensure_installed = { "typst", "go", "bash", "python", "nix", "lua" },
ensure_installed = { "css", "html", "rust", "php", "typst", "go", "bash", "python", "nix", "lua", "cpp", "c", "java" },
auto_install = true,
highlight = { enable = true },
indent = { enable = true },
fold = { enable = true },
ignore_install = {},
modules = {},
})
end
},