1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/nvim/lua/plugins/treesitter.lua
2022-03-20 05:22:56 +01:00

27 lines
399 B
Lua

require("nvim-treesitter.configs").setup({
ensure_installed = {
"python",
"gdscript",
-- "godot_resource",
"julia",
"lua",
"latex",
"bash",
"fish",
"html",
"json",
"toml",
"yaml",
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
},
rainbow = {
enable = true,
extenden_mode = true,
},
})