summaryrefslogtreecommitdiffstats
path: root/ftplugin/ansible.vim
blob: 5f2f3f74b44892ef00562f082b80cc5f84770f6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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