summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2018-05-08 11:02:54 -0700
committerFranck Cuny <franck.cuny@gmail.com>2018-05-08 11:02:54 -0700
commit2f727fa46a34fcd0e4f359f032ad640a7c78bf9c (patch)
tree7b4107600864a63403b30e9ef6fd1197661a97e9
parent[vim] move syntax to the end, set up python (diff)
downloademacs.d-2f727fa46a34fcd0e4f359f032ad640a7c78bf9c.tar.gz
[vim] a couple of options
-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