aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-20 22:55:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-20 22:55:26 +1200
commiteca768bdd712b752df5e0b93c59b55ae8f222b36 (patch)
tree70ff9a7f7161e00a6aa294b8eb3defb9592fb68d
parentRemove 'ttyfast' setting (diff)
downloaddotfiles-eca768bdd712b752df5e0b93c59b55ae8f222b36.tar.gz
dotfiles-eca768bdd712b752df5e0b93c59b55ae8f222b36.zip
Remove 'timeout' and related Vim settings
More over-setting, for a problem I'm not sure I ever actually had.
-rw-r--r--vim/vimrc9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 27276b8a..5e149878 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -228,15 +228,6 @@ set lazyredraw
" Never use any kind of bell, visual or not
set visualbell t_vb=
-" Require less than one second between keys for mappings to work correctly
-set timeout
-set timeoutlen=1000
-
-" Require less than a twentieth of a second between keys for key codes to work
-" correctly; I don't use Escape as a meta key anyway
-set ttimeout
-set ttimeoutlen=50
-
" Rebind Ctrl-C in insert mode to undo the current insert operation
inoremap <C-C> <C-C>u