Files
vim-polyglot/after/ftplugin/puppet.vim

12 lines
268 B
VimL

if !polyglot#util#IsEnabled('puppet', expand('<sfile>:p'))
finish
endif
if !exists('g:puppet_align_hashes')
let g:puppet_align_hashes = 1
endif
if g:puppet_align_hashes
inoremap <buffer> <silent> => =><Esc>:call puppet#align#AlignHashrockets()<CR>$a
endif