From f838acdd77bec2914d7e31875502610d96e03fad Mon Sep 17 00:00:00 2001 From: Ian Foster Date: Sat, 7 Dec 2013 19:48:17 -0800 Subject: [PATCH] ignore more files in vim --- vim/vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/vimrc b/vim/vimrc index 9f3a258..1f0e6ba 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -75,7 +75,7 @@ set mouse=a set wildmenu "ignore these list file extensions -set wildignore=*.dll,*.o,*.obj,*.exe,*.pyc,*.jpg,*.gif,*.png +set wildignore=*.dll,*.o,*.obj,*.exe,*.pyc,*.jpg,*.gif,*.png,*.class,*.ln set wildmode=list:longest " turn on wild mode huge list "Keep the cursor n lines from the top and bottom @@ -135,7 +135,7 @@ autocmd vimenter * if !argc() | NERDTree | endif " close nerdtree if it is the last window open autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif " have nerdtree ignore certian file types -let NERDTreeIgnore=['\.o$', '\~$', '\.ln'] +let NERDTreeIgnore=['\.o$', '\~$', '\.ln', '\.class', '\.pyc'] "color scheme set t_Co=256 "this forces vim to use 256 colors even if the console says it is not supported -- 1.9.1