aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-08 23:14:01 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-08 23:14:01 +1200
commit7769210cdfe0c90fefe01fca1199f526c6871a00 (patch)
tree28096a4f96ddcd4e942b498c4396cf13895897bb /vim/vimrc
parentOverhaul base after-ftplugins (diff)
downloaddotfiles-7769210cdfe0c90fefe01fca1199f526c6871a00.tar.gz
dotfiles-7769210cdfe0c90fefe01fca1199f526c6871a00.zip
Change local leader back to comma
Double-backslash had a major problem--if there was no local mapping defined, you ended up loading the global one.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ada98de7..312b982f 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -9,7 +9,7 @@ runtime system.vim
" Load filetype settings, plugins, and maps
if has('autocmd')
- let g:maplocalleader = '\\'
+ let g:maplocalleader = ','
filetype plugin indent on
endif