Emmanuel BENOîT
9b08205807
* Define leader keys in pre-configuration, so they can be used in NeoBundle mappings * Disable timeouts on key sequences.
7 lines
296 B
VimL
7 lines
296 B
VimL
" Define leader keys. They need to be here as they might be used to configure
|
|
" NeoBundle mappings. If a local configuration wants to override them, it
|
|
" should do so in its vimrc file.
|
|
|
|
let mapleader = ' ' " Space as leader character
|
|
let maplocalleader = ',' " Comma as local leader character
|
|
|