aboutsummaryrefslogtreecommitdiff
path: root/vim/indent
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:42:44 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-30 01:42:44 +1200
commitb393311059b4911308184523564e3cf7fb3e5f67 (patch)
treea2ba6902658cde074e8f714d15d03ee172214b3f /vim/indent
parentAdd CSV, TSV, and password file filetypes (diff)
downloaddotfiles-b393311059b4911308184523564e3cf7fb3e5f67.tar.gz
dotfiles-b393311059b4911308184523564e3cf7fb3e5f67.zip
Remove vim/indent/php.vim blocker stub
Let's give this another try, and maybe configure it this time.
Diffstat (limited to 'vim/indent')
-rw-r--r--vim/indent/php.vim10
1 files changed, 0 insertions, 10 deletions
diff --git a/vim/indent/php.vim b/vim/indent/php.vim
deleted file mode 100644
index 7747d77e..00000000
--- a/vim/indent/php.vim
+++ /dev/null
@@ -1,10 +0,0 @@
-" Only do this when not done yet for this buffer
-if exists('b:did_indent')
- finish
-endif
-let b:did_indent = 1
-
-" Replace Vim's stock PHP indent rules. They're very complicated and don't
-" work in a predictable way. Just use 'autoindent'.
-setlocal autoindent
-let b:undo_indent = 'setlocal autoindent<'