applied treesitter config

This commit is contained in:
polamid23 2023-07-13 12:20:13 +02:00
parent 52a5bf3220
commit a2f07e6c5b

View file

@ -1,8 +1,22 @@
local configs = require("nvim-treesitter.configs") local configs = require("nvim-treesitter.configs")
configs.setup({ configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html" }, ensure_installed = {
sync_install = false, "c",
highlight = { enable = true }, "lua",
indent = { enable = true }, "vim",
}) "vimdoc",
"query",
"elixir",
"heex",
"javascript",
"html",
"php",
"python",
"typescript",
"vue",
},
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})