fix (vimrc): do not behave case sensitive while searching

This commit is contained in:
eeemsi 2023-01-19 10:14:40 +01:00
parent fe24172e4c
commit 124a1f012c

3
vimrc
View File

@ -10,6 +10,9 @@ set background=dark
" Highlight the screen line of the cursor " Highlight the screen line of the cursor
set cursorline set cursorline
" Ignore case in search patterns
set ignorecase
" enable syntax highlighting " enable syntax highlighting
syntax on syntax on