mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-14 06:00:37 +00:00
16 lines
237 B
VimL
16 lines
237 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
|
|
|