From 3e99cf556edbc7968207a79296d934dc24de57f0 Mon Sep 17 00:00:00 2001 From: Christopher Joslyn Date: Sun, 13 May 2018 18:12:09 -0400 Subject: [PATCH] Ignore most file types that janus would --- vimrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/vimrc b/vimrc index 8e61b16..a160da9 100644 --- a/vimrc +++ b/vimrc @@ -113,6 +113,16 @@ set incsearch " incremental searching set ignorecase " searches are case insensitive... set smartcase " ... unless they contain at least one capital letter +"" +"" Wild settings (Janus) +"" +" Disable output and VCS files +set wildignore+=*.o,*.out,*.obj,.git,*.rbc,*.rbo,*.class,.svn,*.gem +" Disable archive files +set wildignore+=*.zip,*.tar.gz,*.tar.bz2,*.rar,*.tar.xz +" Disable temp and backup files +set wildignore+=*.swp,*~,._* + "" "" Fugitive (Janus) ""