diff options
author | Teddy Wing | 2021-02-02 23:22:31 +0100 |
---|---|---|
committer | Teddy Wing | 2021-02-19 00:42:20 +0100 |
commit | 2f708ba5eccdb91c67575e940fcf08be513990bf (patch) | |
tree | 7a6fa300763802b785efb9e21d5e6553f157e3c3 | |
parent | e14d520648e56b99fb72c54fd625c06ba005817e (diff) | |
download | dotvim-2f708ba5eccdb91c67575e940fcf08be513990bf.tar.bz2 |
ftplugin/lisp.vim: Set <LocalLeader> to <Space>
Vlime includes a bunch of mappings, but some of them are shadowed by own
mappings. The plugin doesn't include any corresponding ex-style
commands. Change the <LocalLeader> in Lisp files to <Space> to give me
access to all of Vlime's mappings.
-rw-r--r-- | ftplugin/lisp.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftplugin/lisp.vim b/ftplugin/lisp.vim index a5fd6e3..c2f44af 100644 --- a/ftplugin/lisp.vim +++ b/ftplugin/lisp.vim @@ -5,3 +5,7 @@ setlocal expandtab setlocal tabstop=2 setlocal softtabstop=2 setlocal shiftwidth=2 + + +" Use <Space> as LocalLeader +let maplocalleader = "\<Space>" |