Highlight search matches in vim
This commit is contained in:
parent
3711b25225
commit
aa2cf15846
|
@ -2,7 +2,6 @@
|
||||||
set number
|
set number
|
||||||
set ttyfast
|
set ttyfast
|
||||||
set encoding=utf8
|
set encoding=utf8
|
||||||
""Misc
|
|
||||||
set clipboard=unnamedplus
|
set clipboard=unnamedplus
|
||||||
set nofoldenable
|
set nofoldenable
|
||||||
""Spaces instead of tabs
|
""Spaces instead of tabs
|
||||||
|
@ -12,8 +11,9 @@ set shiftwidth=2
|
||||||
""Don't litter swp files everywhere
|
""Don't litter swp files everywhere
|
||||||
set backupdir=~/.cache
|
set backupdir=~/.cache
|
||||||
set directory=~/.cache
|
set directory=~/.cache
|
||||||
""Ignore case when searching
|
""Ignore case and highlight matches when searching
|
||||||
set ignorecase
|
set ignorecase
|
||||||
|
set hlsearch
|
||||||
""Resize line number colum
|
""Resize line number colum
|
||||||
set numberwidth=2
|
set numberwidth=2
|
||||||
""Keybindings
|
""Keybindings
|
||||||
|
|
Loading…
Reference in New Issue