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-08-21 21:04:16 +02:00

35 lines
469 B
Lua

require("nvim-treesitter.configs").setup({
ensure_installed = {
"bash",
"cpp",
"css",
"fish",
"gdscript",
"go",
"gomod",
"html",
"json",
"julia",
"latex",
"lua",
"python",
"rust",
"scss",
"sql",
"toml",
"yaml",
-- "markdown",
-- "markdown_inline",
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
rainbow = {
enable = true,
extended_mode = true,
},
autotag = {
enable = true,
},
})