1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
This commit is contained in:
Mo8it 2022-04-04 01:53:04 +02:00
parent fda9fed987
commit 6f8bb800a8

View file

@ -2,7 +2,7 @@ require("nvim-treesitter.configs").setup({
ensure_installed = { ensure_installed = {
"python", "python",
"gdscript", "gdscript",
-- "godot_resource", -- "godot_resource",
"julia", "julia",
"lua", "lua",
"latex", "latex",
@ -10,18 +10,15 @@ require("nvim-treesitter.configs").setup({
"fish", "fish",
"html", "html",
"json", "json",
"toml", "toml",
"yaml", "yaml",
}, },
highlight = { highlight = {
enable = true, enable = true,
additional_vim_regex_highlighting = false, additional_vim_regex_highlighting = false,
}, },
indent = {
enable = true,
},
rainbow = { rainbow = {
enable = true, enable = true,
extenden_mode = true, extended_mode = true,
}, },
}) })