From ae1617edc6d3d33217969a46b8eabb891e4bf1c8 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 8 Oct 2012 01:08:42 +0200 Subject: [PATCH] vimrc: Ignore case when completing files/directories. --- vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vimrc b/vimrc index 491979b..ed6ce3b 100644 --- a/vimrc +++ b/vimrc @@ -65,6 +65,10 @@ set nomodeline " matches after another (full). Thanks to pbrisbin " (http://pbrisbin.com:8080/dotfiles/vimrc). set wildmode=list:longest,full +" Ignore case when completing files/directories. +if exists('+wildignorecase') + set wildignorecase +endif " Increase history of executed commands (:). set history=1000 -- 2.44.1