]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
crontab: Add. Delete old CtrlP cache files.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 491979b73622e1145d87597a652bf6284fae4362..48f52f335e1deec75a45c1219ae38d4df5978cbd 100644 (file)
--- 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