]> code.delx.au - dotfiles/blob - .vim/search.vim
Vim config improvements
[dotfiles] / .vim / search.vim
1 " Match search results as you type
2 set incsearch
3
4 " Ignore case when searching
5 set ignorecase
6
7 " Ignore the ignorecase character if search contains uppercase chars
8 set smartcase
9
10 " Highlight search terms
11 set hlsearch
12
13