aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-21 10:07:55 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-21 10:07:55 +1200
commite9b47ddd71ab97c2ca608d26e10eb3d818e68cc6 (patch)
tree887095ce03eae8efec0c7f0ed21531f2f945d3ff
parentAdd .vimrc reload binding (diff)
downloaddotfiles-e9b47ddd71ab97c2ca608d26e10eb3d818e68cc6.tar.gz
dotfiles-e9b47ddd71ab97c2ca608d26e10eb3d818e68cc6.zip
Restore 'esckeys' setting
I remember now; otherwise things hang at the end of insert mode, which is a bit rubbish.
-rw-r--r--vim/vimrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 4199412e..da1d1137 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -56,6 +56,9 @@ set comments=
" column with @ symbols instead, which I don't find very helpful
set display=lastline
+" Don't wait to see if Escape in insert mode precedes a key for an Alt binding
+set noesckeys
+
" Try to set the 'j' flag for 'formatoptions', to automatically delete comment
" leaders when joining lines, if supported
if v:version >= 704 || v:version == 703 && has('patch541')