.s/.config/nvim/lua/plugins/configs/treesitter.lua

10 lines
244 B
Lua
Raw Normal View History

2024-04-10 12:12:30 -04:00
require("nvim-treesitter.configs").setup {
ensure_installed = { "lua", "vim", "vimdoc", "tsx", "html", "css", "typescript", "javascript" },
highlight = {
enable = true,
use_languagetree = true,
},
indent = { enable = true },
}