chore: Add treesitter

It says I can use it for highlighting......... I have no idea how to use
it, too lazy to figure it out rn
This commit is contained in:
ziro 2023-08-27 15:33:35 +07:00
parent 1f82964c65
commit cda9433be6
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -96,6 +96,9 @@ Plug 'GutenYe/json5.vim'
" --- Project Fluent support " --- Project Fluent support
Plug 'projectfluent/fluent.vim' Plug 'projectfluent/fluent.vim'
" --- AIO solution for highlighting
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
call plug#end() call plug#end()
" ====================== " ======================
@ -408,3 +411,6 @@ lua <<EOF
capabilities = capabilities capabilities = capabilities
} }
EOF EOF
" --- TSTree
lua require'nvim-treesitter.configs'.setup{highlight={enable=true}}