mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2025-01-07 15:59:19 +00:00
27 lines
381 B
Lua
27 lines
381 B
Lua
require("nvim-treesitter.configs").setup({
|
|
ensure_installed = {
|
|
"python",
|
|
"gdscript",
|
|
-- "godot_resource",
|
|
"julia",
|
|
"lua",
|
|
"latex",
|
|
"bash",
|
|
"fish",
|
|
"html",
|
|
"json",
|
|
"toml",
|
|
"yaml",
|
|
"regex",
|
|
"rust",
|
|
"cpp",
|
|
},
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
rainbow = {
|
|
enable = true,
|
|
extended_mode = true,
|
|
},
|
|
})
|