]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Don't redraw screen while executing macros.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index d8bd27c8471e480da246aa8d7693bb4089baedc5..88db35b817f38a9efd94d96853484b53d14bbf96 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -23,6 +23,9 @@ set nocompatible
 set runtimepath-=~/.vim
 set runtimepath^=~/.vim,~/.vim/runtime
 
+" Don't store swap files in the same directory as the edited file.
+set directory-=.
+
 " Disable modelines as they may cause security problems. Instead use
 " securemodelines (Vim script #1876).
 set nomodeline
@@ -122,6 +125,10 @@ set ruler
 " Display partial commands in the status line.
 set showcmd
 
+" Don't redraw screen when executing macros; increases speed. Thanks to James
+" Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
+set lazyredraw
+
 " Visualize the line the cursor is currently in.
 if v:version >= 700
     set cursorline