Files
vim-polyglot/ftplugin/ansible.vim
2019-09-06 15:54:31 +02:00

9 lines
277 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 isfname+=@-@
set path+=./../templates,./../files,templates,files
endif