aboutsummaryrefslogtreecommitdiff
path: root/vim/config/term.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-28 21:58:09 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-28 21:58:09 +1300
commit0d3fb9c9f94fa71d8bab82dd9561abeae00c7a10 (patch)
tree8d58a6f7124f5d41383fd54c924a59186c507b91 /vim/config/term.vim
parentMove whitespace .vimrc config into subfile (diff)
downloaddotfiles-0d3fb9c9f94fa71d8bab82dd9561abeae00c7a10.tar.gz
dotfiles-0d3fb9c9f94fa71d8bab82dd9561abeae00c7a10.zip
Move terminal .vimrc config into subfile
Diffstat (limited to 'vim/config/term.vim')
-rw-r--r--vim/config/term.vim27
1 files changed, 27 insertions, 0 deletions
diff --git a/vim/config/term.vim b/vim/config/term.vim
new file mode 100644
index 00000000..f368e481
--- /dev/null
+++ b/vim/config/term.vim
@@ -0,0 +1,27 @@
+" Don't bother about checking whether Escape is being used as a means to enter
+" a Meta-key combination, just register Escape immediately
+set noesckeys
+
+" Don't bother drawing the screen while executing macros or other automated or
+" scripted processes, just draw the screen as it is when the operation
+" completes
+set lazyredraw
+
+" Improve redrawing smoothness by assuming that my terminal is reasonably
+" fast
+set ttyfast
+
+" 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
+
+" Don't write the output of :make to the terminal
+set shellpipe=>