Defer loading of vim-marked to the end, since it needs to run after vim-polyglot

This commit is contained in:
Danielle McLean 2019-11-10 09:17:53 +11:00
parent f010fd4698
commit ae15a682a1
Signed by: 00dani
GPG Key ID: FF6F9216852288FF
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ call Plug('alx741/yesod.vim')
call Plug('pbrisbin/vim-syntax-shakespeare')
if has('macunix')
call Plug('itspriddle/vim-marked')
" We rename this plugin to make sure it loads AFTER vim-polyglot,
" since it won't work properly if it's loaded first.
call Plug('itspriddle/vim-marked', {'name': 'zzvim-marked'})
endif
call PlugEnd()