aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/csv.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:44:45 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:44:45 +1200
commitfe93144dc341f42feb5da17450d46f6f5809fc7a (patch)
tree2954a51670ed88d688b2c08173393e2265c64f60 /vim/ftplugin/csv.vim
parentAdd explanatory comment on Vim indent ftplugin (diff)
downloaddotfiles-fe93144dc341f42feb5da17450d46f6f5809fc7a.tar.gz
dotfiles-fe93144dc341f42feb5da17450d46f6f5809fc7a.zip
Spruce up CSV and TSV Vim filetype scripts
Diffstat (limited to 'vim/ftplugin/csv.vim')
-rw-r--r--vim/ftplugin/csv.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/vim/ftplugin/csv.vim b/vim/ftplugin/csv.vim
index 162da402..9bd3e86e 100644
--- a/vim/ftplugin/csv.vim
+++ b/vim/ftplugin/csv.vim
@@ -4,8 +4,6 @@ if exists('b:did_ftplugin')
endif
let b:did_ftplugin = 1
-" No autoformatting, literal tabs
-setlocal noautoindent
-setlocal noexpandtab
+" No autoformatting
setlocal formatoptions=
-let b:undo_ftplugin = 'setlocal autoindent< expandtab< formatoptions<'
+let b:undo_ftplugin = 'formatoptions<'