From b10c1bcb87f52abb08ad34979f74f95826b3ac88 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 30 Jun 2018 01:32:44 +1200 Subject: Add CSV, TSV, and password file filetypes --- vim/ftplugin/csv.vim | 5 +++++ vim/ftplugin/password.vim | 5 +++++ vim/ftplugin/tsv.vim | 5 +++++ 3 files changed, 15 insertions(+) create mode 100644 vim/ftplugin/csv.vim create mode 100644 vim/ftplugin/password.vim create mode 100644 vim/ftplugin/tsv.vim (limited to 'vim') 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<' -- cgit v1.2.3