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

" No autoformatting, literal tabs
setlocal noautoindent
setlocal noexpandtab
setlocal formatoptions=
let b:undo_ftplugin = 'setlocal autoindent< expandtab< formatoptions<'