From: Samir Benmendil Date: Thu, 7 Apr 2016 10:16:51 +0000 (+0100) Subject: vim: ignore case when completing file names X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/6abbb3046411b7801e28854c1cb5ad0652d514e1 vim: ignore case when completing file names --- diff --git a/vim/vimrc b/vim/vimrc index cb6ecea..22c9cd2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -247,6 +247,7 @@ set directory=$XDG_CACHE_HOME/vim/swap// set history=5000 " how many command lines are remembered set wildmenu " command-line completion shows a list of matches set wildmode=longest:full,full " specifies how command line completion works +set wildignorecase " ignore case when completing file names set wildignore+=.hg,.git,.svn " Version control set wildignore+=*.aux,*.out,*.toc " LaTeX intermediate files