X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=48f52f335e1deec75a45c1219ae38d4df5978cbd;hb=0c40bebfe732f379daa3826b8be1acf90bb33052;hp=491979b73622e1145d87597a652bf6284fae4362;hpb=72689700fae926c2cfbd652e2b5751e7409fa3b1;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index 491979b..48f52f3 100644 --- a/vimrc +++ b/vimrc @@ -65,6 +65,15 @@ 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 + +" Show completion menu even if only one entry matches. +if exists('+completeopt') + set completeopt+=menuone +endif " Increase history of executed commands (:). set history=1000