13 lines
429 B
Lua
13 lines
429 B
Lua
|
|
return {
|
||
|
|
'nvim-treesitter/nvim-treesitter',
|
||
|
|
build = ':TSUpdate',
|
||
|
|
config = function()
|
||
|
|
require('nvim-treesitter.configs').setup({
|
||
|
|
ensure_installed = { "html", "markdown", "markdown_inline", "json", "yaml", "lua", "python",
|
||
|
|
"css", "javascript", "typescript", "bash", "vim", "go", "toml", "xml"}, -- add languages you use
|
||
|
|
highlight = { enable = true },
|
||
|
|
indent = { enable = true },
|
||
|
|
})
|
||
|
|
end,
|
||
|
|
}
|