mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-13 05:20:38 +00:00
14 lines
235 B
VimL
14 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
|