aboutsummaryrefslogtreecommitdiff
path: root/vim/after/indent/vim.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:15:21 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:15:21 +1300
commit03a07b9e2e8785e518c533561725d79ebfc6dcbd (patch)
treef2bedb72ae8586d68e645684bce54a14cf69df01 /vim/after/indent/vim.vim
parentMerge branch 'release/v10.14.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-0996ccaf08c376bdb1f648e2be57e2c2e150160d.tar.gz (sig)
dotfiles-0996ccaf08c376bdb1f648e2be57e2c2e150160d.zip
Merge branch 'release/v10.15.0'v10.15.0
* release/v10.15.0: Update detect_indent.vim to v0.1.3 Work around b:undo_indent mis-setting for Vim Remove unneeded local var prefixes Condense a :set line Remove unneeded load guard Remove unneeded self var for han(1df) Remove unneeded shebangs
Diffstat (limited to 'vim/after/indent/vim.vim')
-rw-r--r--vim/after/indent/vim.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/indent/vim.vim b/vim/after/indent/vim.vim
index da34eb75..4300e125 100644
--- a/vim/after/indent/vim.vim
+++ b/vim/after/indent/vim.vim
@@ -1,9 +1,9 @@
-" Use two (not four!) spaces for indentation, per convention
-call indent#Spaces(2)
-
" Remove inapplicable defaults from 'indentkeys'; we should only need to undo
" this if the stock plugin didn't already arrange that (before v7.3.539)
setlocal indentkeys-=0#,0{,0},0),:
if !exists('b:undo_indent')
let b:undo_indent = 'setlocal indentkeys<'
endif
+
+" Use two (not four!) spaces for indentation, per convention
+call indent#Spaces(2)