diff options
author | June McEnroe <june@causal.agency> | 2015-02-16 23:56:26 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2015-02-16 23:56:26 -0500 |
commit | dfbc9a40bb39a8218fe1b7c33d88c6836269b616 (patch) | |
tree | 914b32f00e99b2a89f9f0b93d09c0f06b193b1c2 /.vimrc | |
parent | Prevent esc delay in terminal vim (diff) | |
download | src-dfbc9a40bb39a8218fe1b7c33d88c6836269b616.tar.gz src-dfbc9a40bb39a8218fe1b7c33d88c6836269b616.zip |
Fix timeoutlen so leader still works
Diffstat (limited to '')
-rw-r--r-- | .vimrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc index fb7c5eb9..c7a4c51e 100644 --- a/.vimrc +++ b/.vimrc @@ -28,7 +28,7 @@ set shortmess=atI set visualbell t_vb= " Prevent delay when returning to norml mode in terminal vim. -set timeoutlen=0 +set ttimeoutlen=0 " Show hard tabs and trailing whitespace set list listchars=tab:»·,trail:· @@ -45,7 +45,7 @@ set wildmenu wildmode=list:longest " Swap , and \ for leader. noremap \ , -let mapleader="," +let mapleader = ',' " Clear search results. nmap <leader>n :nohlsearch<CR> |