Files
vim-polyglot/after/ftplugin/puppet.vim
2020-10-25 20:33:44 +01:00

12 lines
255 B
VimL

if !has_key(g:polyglot_is_disabled, 'puppet')
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