aboutsummaryrefslogtreecommitdiff
path: root/vim/indent
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:36:02 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-14 22:42:29 +1200
commitcb77ee161538bc439b9daad3483974c60468a84a (patch)
treec1e5e558ca26232d94f724f91cd3b4bed55caaa8 /vim/indent
parentUse tabs for Git configuration files (diff)
downloaddotfiles-cb77ee161538bc439b9daad3483974c60468a84a.tar.gz
dotfiles-cb77ee161538bc439b9daad3483974c60468a84a.zip
Remove unneeded password filetype
Diffstat (limited to 'vim/indent')
-rw-r--r--vim/indent/password.vim11
1 files changed, 0 insertions, 11 deletions
diff --git a/vim/indent/password.vim b/vim/indent/password.vim
deleted file mode 100644
index e37d0387..00000000
--- a/vim/indent/password.vim
+++ /dev/null
@@ -1,11 +0,0 @@
-" Only do this when not done yet for this buffer
-if exists('b:did_indent')
- finish
-endif
-let b:did_indent = 1
-
-" Manual indenting and literal tabs for passwords
-setlocal noautoindent
-setlocal noexpandtab
-setlocal softtabstop=0
-let b:undo_indent = 'setlocal autoindent< expandtab< softtabstop<'