aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-08 03:25:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-08 03:25:23 +1200
commitd4e6f023413ed4b3d5a51e75547110c037e31591 (patch)
tree0f720ba063579bcb14c27c8a52abeff7305acab0
parentBind leader maps for delete and insert (diff)
downloaddotfiles-d4e6f023413ed4b3d5a51e75547110c037e31591.tar.gz
dotfiles-d4e6f023413ed4b3d5a51e75547110c037e31591.zip
Switch to \\ (double-backslash) for local leader
I decided I don't like comma as leader. Not sure why; it bugs me a little that it has a real and occasionally useful function that I'm overwriting, but it's just not sticking right either. Let's try \\ instead.
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index e8439a58..d4989489 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