aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-02-17 21:17:58 -0500
committertdro <tdro@users.noreply.github.com>2022-02-17 21:17:58 -0500
commitab88eb3c639302cc414c3babe061418ca8117cb3 (patch)
tree3fbd96f1b145281fd33c23ad3020df77c0789918 /.vimrc
parentbea9201c9928fb78720bc93dc472cb67e7605dd7 (diff)
downloaddotfiles-ab88eb3c639302cc414c3babe061418ca8117cb3.tar.gz
dotfiles-ab88eb3c639302cc414c3babe061418ca8117cb3.tar.bz2
dotfiles-ab88eb3c639302cc414c3babe061418ca8117cb3.zip
.vimrc: Set nolazy redraw and ttyfast
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index eab37ae..4dc561d 100644
--- a/.vimrc
+++ b/.vimrc
@@ -39,7 +39,8 @@ set autowriteall " Write if modified on buffer change.
set autoindent " Copy indent from current line to new line.
set ignorecase " Ignore case on search.
set smartcase " Search by case smartly.
-set lazyredraw " Do not redraw screen when using macros.
+set nolazyredraw " Disable lazy redraw on screen when using macros.
+set ttyfast " Assume fast terminal.
set undofile " Enable undofile.
set viminfo+=n~/.vim/viminfo " Set viminfo file path.
set undodir=~/.vim/undodir " Set undofile directory.