neovim-config/neovim_vimscriptonly/nvim/confs/treesitter.vim

17 lines
237 B
VimL
Raw Normal View History

2021-03-09 07:29:50 +00:00
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,
}
}
2021-03-11 08:10:43 +00:00
2021-03-09 07:29:50 +00:00
EOF
2021-03-11 08:10:43 +00:00