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

28 lines
381 B
Lua
Raw Normal View History

2022-03-20 04:22:56 +00:00
require("nvim-treesitter.configs").setup({
ensure_installed = {
"python",
"gdscript",
2022-04-03 23:53:04 +00:00
-- "godot_resource",
2022-03-20 04:22:56 +00:00
"julia",
"lua",
"latex",
"bash",
"fish",
"html",
"json",
2022-04-03 23:53:04 +00:00
"toml",
"yaml",
2022-04-24 17:16:54 +00:00
"regex",
"rust",
"cpp",
2022-03-20 04:22:56 +00:00
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
rainbow = {
enable = true,
2022-04-03 23:53:04 +00:00
extended_mode = true,
2022-03-20 04:22:56 +00:00
},
})