fix: enable treesitter integration by default only on Neovim

This commit is contained in:
TheLeoP
2025-06-24 21:28:14 -05:00
parent 480af13179
commit b9366dfa53

View File

@@ -77,7 +77,7 @@ function! s:init_options()
call s:init_option('matchup_matchpref', {})
call s:init_option('matchup_treesitter_enabled', v:true)
call s:init_option('matchup_treesitter_enabled', has('nvim') ? v:true : v:false)
call s:init_option('matchup_treesitter_disabled', {})
call s:init_option('matchup_treesitter_include_match_words', v:false)
call s:init_option('matchup_treesitter_enable_quotes', v:true)