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

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