blob: 06c760a18531634d6eff44c1f871db01c2b190aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
" Last Change: 2020 avril 19
if exists('g:loaded_nvim_treesitter')
finish
endif
lua << EOF
ts_installable_parsers = function()
return table.concat(require'nvim-treesitter'.available_parsers(), '\n')
end
require'nvim-treesitter'._root.setup()
EOF
let g:loaded_nvim_treesitter = 1
augroup NvimTreesitter
augroup END
|