]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Ignore case when completing files/directories.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 491979b73622e1145d87597a652bf6284fae4362..ed6ce3b1f7882d0b345eefc8749deccb879926d6 100644 (file)
--- 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