aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/password.vim
blob: 28f5a5e9d87c4b6424e3f4a8753627dcab86ad6b (plain) (blame)
1
2
3
4
5
6
7
8
9
" Only do this when not yet done for this buffer
if exists('b:did_ftplugin')
  finish
endif
let b:did_ftplugin = 1

" No autoformatting
setlocal formatoptions=
let b:undo_ftplugin = 'setlocal formatoptions<'