aboutsummaryrefslogtreecommitdiff
path: root/vim/indent/vim.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-12 20:45:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-12 20:45:58 +1300
commitf694cace8570f704118f8deae91b51bb0880b1c0 (patch)
treec0643cd7c649245c3f355629f5c9a94e464bf68e /vim/indent/vim.vim
parentMerge branch 'feature/vim-plug-boilplate' into develop (diff)
parentAdd guards for presence of b:undo_* var (diff)
downloaddotfiles-f694cace8570f704118f8deae91b51bb0880b1c0.tar.gz
dotfiles-f694cace8570f704118f8deae91b51bb0880b1c0.zip
Merge branch 'feature/vim-struct' into develop
* feature/vim-struct: Add guards for presence of b:undo_* var Exclude SC1090 (failed source) shellcheck error Move lots of local Vim config into vim/after
Diffstat (limited to 'vim/indent/vim.vim')
-rw-r--r--vim/indent/vim.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/indent/vim.vim b/vim/indent/vim.vim
deleted file mode 100644
index 138b9205..00000000
--- a/vim/indent/vim.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Observe VimL conventions for two-space indents
-setlocal shiftwidth=2
-setlocal softtabstop=2
-setlocal tabstop=2
-
-" Unload this indent plugin; suppress errors because ancient Vim can't use the
-" '<' suffix syntax for resetting local integer
-let b:undo_user_indent
- \ = 'silent! setlocal shiftwidth< softtabstop< tabstop<'