Ensure main treesitter languages are installed

This commit is contained in:
2024-07-10 09:19:42 +09:00
parent 976d13ab75
commit 6129d0cf1e
+2 -1
View File
@@ -6,7 +6,8 @@ return {
vim.cmd("TSUpdate")
require("nvim-treesitter.install").compilers = { "zig", "gcc", "cc", "cl", "clang" }
require("nvim-treesitter.configs").setup({
highlight = { enable = true }
highlight = { enable = true },
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "markdown", "markdown_inline", "typescript", "javascript", "css", "scss", "html", "svelte", "json", "yaml" }
})
end
}