[nvim] add nvim-treesitter (READ COMMIT NOTES)

The thing is currently unstable, requires the nightly branch of neovim,
and the highlighting groups need a lot of tweaking (obviously, :HLT
doesn't work, making this even harder). I just put the configuration
into the repo in case I need it in the future.
This commit is contained in:
Dmytro Meleshko 2021-03-21 15:13:42 +02:00
parent e4c2a87015
commit f24c8e5131
3 changed files with 18 additions and 1 deletions

View File

@ -64,5 +64,8 @@
Plug 'neoclide/coc.nvim', { 'branch': 'release' }
Plug 'dag/vim2hs'
Plug 'norcalli/nvim-colorizer.lua'
if g:vim_ide_treesitter
Plug 'nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' }
endif
endif
" }}}

View File

@ -0,0 +1,11 @@
lua <<EOF
require'nvim-treesitter.configs'.setup {
ensure_installed = "maintained",
highlight = {
enable = true,
},
indent = {
enable = true,
},
}
EOF

View File

@ -1,6 +1,7 @@
let g:nvim_dotfiles_dir = expand('<sfile>:p:h')
let g:vim_ide = get(g:, 'vim_ide', 0)
let g:vim_ide_treesitter = get(g:, 'vim_ide_treesitter', 0)
let &runtimepath = g:nvim_dotfiles_dir.','.&runtimepath.','.g:nvim_dotfiles_dir.'/after'
@ -19,6 +20,9 @@ call plug#begin(s:vim_plug_home)
Plug 'junegunn/vim-plug'
runtime! dotfiles/plugins-list.vim
call plug#end()
if g:vim_ide_treesitter
runtime! dotfiles/treesitter.vim
endif
" Automatically install/clean plugins (because I'm a programmer) {{{
augroup vimrc-plugins
@ -30,5 +34,4 @@ call plug#end()
augroup END
" }}}
colorscheme dotfiles