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

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