diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 17:13:16 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-19 17:13:16 +0200 |
commit | 0929ad2175d1826c0f41fb2760d850fb152d334e (patch) | |
tree | 3b532511b324ba45db67730d2ab303beb534edb6 /vim | |
parent | 0624f89831ea4f5886a0e3562097c9b08836d709 (diff) | |
download | dotfiles-0929ad2175d1826c0f41fb2760d850fb152d334e.tar.xz |
vim: Add ignorecase
smartcase doesn’t work without ignorecase
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |