mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
6 lines
172 B
VimL
6 lines
172 B
VimL
function! health#treesitter#check() abort
|
|
call health#report_start('Checking treesitter configuration')
|
|
lua require 'vim.treesitter.health'.check_health()
|
|
endfunction
|
|
|