From 37959f5a2763e87de51c9f05de983ed9c96a6776 Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Wed, 8 Jul 2015 14:15:53 +0200 Subject: [PATCH] Search configuration --- .vimrc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.vimrc b/.vimrc index 3726675..c411793 100644 --- a/.vimrc +++ b/.vimrc @@ -116,6 +116,23 @@ else "set indentexpr "" endif +"""""""""" +" SEARCH " +"""""""""" + +" highlight search +set hlsearch +" unhighlight current search +map :nohlsearch +imap a +" highlight search while typing +set incsearch +" show matching brackets -> key % +set showmatch +" tenths of a second before blink matching brackets +set mat=5 + + """""""""" " WINDOW " """"""""""