7 lines
211 B
VimL
7 lines
211 B
VimL
" Map leader to space (needs the noremap trick to avoid moving the cursor)
|
|
nnoremap <Space> <Nop>
|
|
let mapleader=" "
|
|
|
|
" Map localleader to '!' (if I want to filter text, I use visual mode)
|
|
let maplocalleader="!"
|