mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
9cc702ae11
I have added g:loaded_matchit check to skip matchit loading like other default plugins.
5 lines
138 B
VimL
5 lines
138 B
VimL
" Nvim: load the matchit plugin by default.
|
|
if !exists("g:loaded_matchit") && stridx(&packpath, $VIMRUNTIME) >= 0
|
|
packadd matchit
|
|
endif
|