Skip to content

Instantly share code, notes, and snippets.

@zeekay
Last active August 29, 2015 13:58
Show Gist options
  • Save zeekay/bc1b2c4f187f82393c47 to your computer and use it in GitHub Desktop.
Save zeekay/bc1b2c4f187f82393c47 to your computer and use it in GitHub Desktop.
Prevent lag when hitting escape in Vim,
augroup fastescape
au!
set notimeout
set ttimeout
set timeoutlen=10
au InsertEnter * set timeout
au InsertLeave * set notimeout
augroup END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment