2024-03-03 18:01:30 -05:00
|
|
|
return {
|
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
|
build = ":TSUpdate",
|
|
|
|
|
config = function()
|
|
|
|
|
local configs = require("nvim-treesitter.configs")
|
|
|
|
|
configs.setup({
|
2024-11-11 12:05:28 -05:00
|
|
|
ensure_installed = { "php", "lua", "vim", "javascript", "html", "yaml", "twig", "vimdoc", "markdown", "markdown_inline" },
|
2024-03-03 18:01:30 -05:00
|
|
|
sync_install = false,
|
|
|
|
|
highlight = { enable = true },
|
2024-11-11 12:05:28 -05:00
|
|
|
indent = { enable = true },
|
2024-03-03 18:01:30 -05:00
|
|
|
})
|
2025-06-30 08:46:33 -04:00
|
|
|
end,
|
|
|
|
|
dependencies = {
|
|
|
|
|
"OXY2DEV/markview.nvim"
|
|
|
|
|
}
|
2024-03-03 18:01:30 -05:00
|
|
|
}
|
|
|
|
|
|