mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-08 13:10:25 +00:00
15 lines
235 B
VimL
15 lines
235 B
VimL
lua <<EOF
|
|
local ts_config = require("nvim-treesitter.configs")
|
|
|
|
ts_config.setup {
|
|
ensure_installed = {
|
|
"javascript","html","css","bash","cpp","rust"
|
|
},
|
|
|
|
highlight = {
|
|
enable = true,
|
|
use_languagetree = true,
|
|
}
|
|
}
|
|
EOF
|