aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-18 17:24:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-18 17:24:43 +1200
commit817ae7ff3abe2b16183c2d92b4e44f6f6d2c952d (patch)
tree6efe97f5993d64e8be470e8beccaeb376f06079c
parentAdd 'synmaxcol' setting (diff)
downloaddotfiles-817ae7ff3abe2b16183c2d92b4e44f6f6d2c952d.tar.gz
dotfiles-817ae7ff3abe2b16183c2d92b4e44f6f6d2c952d.zip
Reassure Vim that PuTTY is 'ttyfast'
-rw-r--r--vim/vimrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index a7c92197..ffdcecb7 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -171,6 +171,11 @@ set splitright " Right of the current window, not left
" Don't try to syntax highlight run-on lines
set synmaxcol=500
+" PuTTY is a fast terminal
+if &term =~# '^putty'
+ set ttyfast
+endif
+
" No terminal mouse, even if we could; the manual says to set 't_RV', but I
" don't like that
" Not in NeoVim