aboutsummaryrefslogtreecommitdiff
path: root/vim/indent
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-04 21:47:47 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-04 21:48:01 +1300
commit3c59126631f390691420f947bc06335f1f1e6834 (patch)
tree3c64c327a2708be1aa58b6c1f4b5aa65178412c8 /vim/indent
parentMerge branch 'release/v0.7.0' (diff)
downloaddotfiles-3c59126631f390691420f947bc06335f1f1e6834.tar.gz
dotfiles-3c59126631f390691420f947bc06335f1f1e6834.zip
Use spaces around concat dots in VimL consistently
Diffstat (limited to 'vim/indent')
-rw-r--r--vim/indent/_GLOBAL.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/indent/_GLOBAL.vim b/vim/indent/_GLOBAL.vim
index 4461f36d..d0bdea26 100644
--- a/vim/indent/_GLOBAL.vim
+++ b/vim/indent/_GLOBAL.vim
@@ -7,6 +7,6 @@ setlocal expandtab<
" Unfortunately, older versions of Vim (6.2 is known) accept neither the
" `option<` nor `option=` syntax for resetting these numeric values, so we do
" it this clunkier way.
-execute 'setlocal shiftwidth='.&g:shiftwidth
-execute 'setlocal softtabstop='.&g:softtabstop
-execute 'setlocal tabstop='.&g:tabstop
+execute 'setlocal shiftwidth=' . &g:shiftwidth
+execute 'setlocal softtabstop=' . &g:softtabstop
+execute 'setlocal tabstop=' . &g:tabstop