vim-polyglot/ftplugin/ansible.vim
Adam Stankiewicz e404a658b1
Update
2016-12-20 20:57:20 +01:00

10 lines
248 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
endif