vim-polyglot/ftplugin/ansible.vim
Adam Stankiewicz bb85059bac
Update
2017-12-30 11:10:32 +01:00

10 lines
264 B
VimL

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'ansible') == -1
" Slow yaml highlighting workaround
if exists('+regexpengine') && ('&regexpengine' == 0)
setlocal regexpengine=1
endif
set path+=./../templates,./../files,templates,files
endif