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