From 7c2f0d925dc7a4e7e3371f3319089f99951c1555 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 29 Mar 2014 19:52:05 -0400 Subject: [PATCH] Shortened the escape sequence timeout so returning to normal mode from insert mode occurs more instantaneously --- vim/config/settings.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/config/settings.vim b/vim/config/settings.vim index 138bcfe..86e1de1 100644 --- a/vim/config/settings.vim +++ b/vim/config/settings.vim @@ -31,6 +31,7 @@ set list listchars=tab:>-,trail:- "display tabs as >--- and trailing spaces as - set autochdir "current dir is file dir set history=250 "undo history + set timeoutlen=1000 ttimeoutlen=0 "shorten the timeout length of escapes set whichwrap=b,s,<,>,[,] "allow the cursor to wrap lines set textwidth=0 "set an unlimited text width before breaking the line when line breaks are enabled set nolinebreak "disable linebreaks, though this will be overridden by filetype plugins