nvim/lua/nyanko/lazy/treesitter.lua

34 lines
472 B
Lua
Raw Normal View History

2025-01-04 08:07:29 -06:00
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
main = "nvim-treesitter.configs",
opts = {
ensure_installed = {
"bash",
"c",
"diff",
"html",
"lua",
"luadoc",
"markdown",
"markdown_inline",
"query",
"vim",
"vimdoc",
},
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = {
"ruby",
},
},
indent = {
enable = true,
disable = {
"ruby",
},
},
},
}