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

17 lines
237 B
VimL
Raw Normal View History

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