diff options
author | June McEnroe <programble@gmail.com> | 2015-02-15 13:06:21 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2015-02-15 13:06:21 -0500 |
commit | b9a4f7f9270f57e16c94bae028381606c8bb8e42 (patch) | |
tree | bcee1bb5b822ea1f9303bfb423957bae349a293b | |
parent | Fix git prompt for branches with slashes (diff) | |
download | src-b9a4f7f9270f57e16c94bae028381606c8bb8e42.tar.gz src-b9a4f7f9270f57e16c94bae028381606c8bb8e42.zip |
Prevent esc delay in terminal vim
-rw-r--r-- | .vimrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc index d8b22e7c..fb7c5eb9 100644 --- a/.vimrc +++ b/.vimrc @@ -27,6 +27,9 @@ set shortmess=atI " Disable audible bell. set visualbell t_vb= +" Prevent delay when returning to norml mode in terminal vim. +set timeoutlen=0 + " Show hard tabs and trailing whitespace set list listchars=tab:»·,trail:· |