aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/password.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:47:07 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:47:07 +1200
commit4cef8f83006e1200bbb1cef72c5db7c65f1c3cce (patch)
treeb447b73ca46777d6c165c48bd67598717038f98e /vim/ftplugin/password.vim
parentMerge branch 'release/v1.11.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-4cef8f83006e1200bbb1cef72c5db7c65f1c3cce.tar.gz
dotfiles-4cef8f83006e1200bbb1cef72c5db7c65f1c3cce.zip
Merge branch 'release/v1.12.0'v1.12.0
* release/v1.12.0: Bump VERSION Add comments to vim ftplugins Remove vim/indent/php.vim blocker stub Add CSV, TSV, and password file filetypes Remove unneeded matchit set ex PHP after ftplugin
Diffstat (limited to 'vim/ftplugin/password.vim')
-rw-r--r--vim/ftplugin/password.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/vim/ftplugin/password.vim b/vim/ftplugin/password.vim
new file mode 100644
index 00000000..a09bac47
--- /dev/null
+++ b/vim/ftplugin/password.vim
@@ -0,0 +1,8 @@
+" Only do this when not yet done for this buffer
+if exists('b:did_ftplugin')
+ finish
+endif
+
+" No autoformatting for password files
+setlocal formatoptions=
+let b:undo_ftplugin = 'setlocal formatoptions<'