aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/csv.vim
blob: 9bd3e86e2f466d64ce20f3eef9f80987f23ec3a4 (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 = 'formatoptions<'