summary refs log tree commit diff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vimrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index a44e0e4..74e1dc3 100644
--- a/vimrc
+++ b/vimrc
@@ -11,6 +11,9 @@ set scrolloff=5            " scroll edge offset (to keep some context)
 set shortmess=a            " abbreviate all(=a) messages when possible
 set showcmd                " show last command
 
+set incsearch              " Shows the match while typing
+set nobackup               " Don't create annoying backup files
+
 " command line completion similar to zsh default
 " complete up to longest match and display the list of possible matches
 set wildmode=list:longest