aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/csv.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftplugin/csv.vim')
-rw-r--r--vim/ftplugin/csv.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/vim/ftplugin/csv.vim b/vim/ftplugin/csv.vim
index 7242f766..58edfffe 100644
--- a/vim/ftplugin/csv.vim
+++ b/vim/ftplugin/csv.vim
@@ -3,6 +3,8 @@ if exists('b:did_ftplugin')
finish
endif
-" No autoformatting for CSVs
+" No autoformatting, literal tabs
+setlocal noautoindent
+setlocal noexpandtab
setlocal formatoptions=
-let b:undo_ftplugin = 'setlocal formatoptions<'
+let b:undo_ftplugin = 'setlocal autoindent< expandtab< formatoptions<'