aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/tsv.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftdetect/tsv.vim')
-rw-r--r--vim/ftdetect/tsv.vim7
1 files changed, 7 insertions, 0 deletions
diff --git a/vim/ftdetect/tsv.vim b/vim/ftdetect/tsv.vim
new file mode 100644
index 00000000..7cfaf1b8
--- /dev/null
+++ b/vim/ftdetect/tsv.vim
@@ -0,0 +1,7 @@
+" Add automatic commands to detect TSV files
+augroup dftsv
+ autocmd!
+ autocmd BufNewFile,BufRead
+ \ *.tsv
+ \ setfiletype tsv
+augroup END