aboutsummaryrefslogtreecommitdiffstats
path: root/vim
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-04-19 17:13:16 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-04-19 17:13:16 +0200
commit0929ad2175d1826c0f41fb2760d850fb152d334e (patch)
tree3b532511b324ba45db67730d2ab303beb534edb6 /vim
parent0624f89831ea4f5886a0e3562097c9b08836d709 (diff)
downloaddotfiles-0929ad2175d1826c0f41fb2760d850fb152d334e.tar.xz
vim: Add ignorecase
smartcase doesn’t work without ignorecase
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 397e99f..4b2efd7 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -37,6 +37,7 @@ filetype plugin indent on
set autoindent
set copyindent
set number " always show line numbers
+set ignorecase " Ignore case of normal letters
set smartcase " ignore case if search pattern is all lowercase,
" case-sensitive otherwise
set hlsearch " highlight search terms
@@ -151,6 +152,7 @@ set statusline+=%#warningmsg#
set statusline+=%{(&fenc!='utf-8'&&&fenc!='')?'['.&fenc.']':''}
set statusline+=%*
+
"" Right side of statusline
set statusline+=%= " Left/right separation point
set statusline+=%-15.((%l,%c-%v)\ %) " Line, column, percentage. (20,0)