aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:32:44 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:34:04 +1200
commitb10c1bcb87f52abb08ad34979f74f95826b3ac88 (patch)
tree89ee504659444cd13d5a86d58a8a8394cbd9b19b /vim
parentRemove unneeded matchit set ex PHP after ftplugin (diff)
downloaddotfiles-b10c1bcb87f52abb08ad34979f74f95826b3ac88.tar.gz
dotfiles-b10c1bcb87f52abb08ad34979f74f95826b3ac88.zip
Add CSV, TSV, and password file filetypes
Diffstat (limited to 'vim')
-rw-r--r--vim/ftplugin/csv.vim5
-rw-r--r--vim/ftplugin/password.vim5
-rw-r--r--vim/ftplugin/tsv.vim5
3 files changed, 15 insertions, 0 deletions
diff --git a/vim/ftplugin/csv.vim b/vim/ftplugin/csv.vim
new file mode 100644
index 00000000..c8937bba
--- /dev/null
+++ b/vim/ftplugin/csv.vim
@@ -0,0 +1,5 @@
+if exists('b:did_ftplugin')
+ finish
+endif
+setlocal formatoptions=
+let b:undo_ftplugin = 'setlocal formatoptions<'
diff --git a/vim/ftplugin/password.vim b/vim/ftplugin/password.vim
new file mode 100644
index 00000000..c8937bba
--- /dev/null
+++ b/vim/ftplugin/password.vim
@@ -0,0 +1,5 @@
+if exists('b:did_ftplugin')
+ finish
+endif
+setlocal formatoptions=
+let b:undo_ftplugin = 'setlocal formatoptions<'
diff --git a/vim/ftplugin/tsv.vim b/vim/ftplugin/tsv.vim
new file mode 100644
index 00000000..c8937bba
--- /dev/null
+++ b/vim/ftplugin/tsv.vim
@@ -0,0 +1,5 @@
+if exists('b:did_ftplugin')
+ finish
+endif
+setlocal formatoptions=
+let b:undo_ftplugin = 'setlocal formatoptions<'