aboutsummaryrefslogtreecommitdiff
path: root/vim/config/term.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-10 21:36:05 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-10 21:36:05 +1300
commit559199f9d1b65c0f17d86540838892bf9c137cf1 (patch)
treeb5f2c7eee759f6eff78f042a502623a2a9a19a2c /vim/config/term.vim
parentRename yank.vim to registers.vim (diff)
downloaddotfiles-559199f9d1b65c0f17d86540838892bf9c137cf1.tar.gz
dotfiles-559199f9d1b65c0f17d86540838892bf9c137cf1.zip
Rename term.vim to terminal.vim
A little clearer and a needless abbreviation anyway.
Diffstat (limited to 'vim/config/term.vim')
-rw-r--r--vim/config/term.vim24
1 files changed, 0 insertions, 24 deletions
diff --git a/vim/config/term.vim b/vim/config/term.vim
deleted file mode 100644
index 8dbda431..00000000
--- a/vim/config/term.vim
+++ /dev/null
@@ -1,24 +0,0 @@
-" 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