aboutsummaryrefslogtreecommitdiffstats
path: root/ftplugin/lisp.vim
diff options
context:
space:
mode:
authorTeddy Wing2021-02-02 23:22:31 +0100
committerTeddy Wing2021-02-19 00:42:20 +0100
commit2f708ba5eccdb91c67575e940fcf08be513990bf (patch)
tree7a6fa300763802b785efb9e21d5e6553f157e3c3 /ftplugin/lisp.vim
parente14d520648e56b99fb72c54fd625c06ba005817e (diff)
downloaddotvim-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.
Diffstat (limited to 'ftplugin/lisp.vim')
-rw-r--r--ftplugin/lisp.vim4
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>"