From 0929ad2175d1826c0f41fb2760d850fb152d334e Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Sun, 19 Apr 2015 17:13:16 +0200 Subject: vim: Add ignorecase MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit smartcase doesn’t work without ignorecase --- vim/vimrc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vim') 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) -- cgit v1.2.3-54-g00ecf