Commit f838acdd77bec2914d7e31875502610d96e03fad
1 parent
af6d2e8486
Exists in
master
ignore more files in vim
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
vim/vimrc
View file @
f838acd
... | ... | @@ -75,7 +75,7 @@ |
75 | 75 | set wildmenu |
76 | 76 | |
77 | 77 | "ignore these list file extensions |
78 | -set wildignore=*.dll,*.o,*.obj,*.exe,*.pyc,*.jpg,*.gif,*.png | |
78 | +set wildignore=*.dll,*.o,*.obj,*.exe,*.pyc,*.jpg,*.gif,*.png,*.class,*.ln | |
79 | 79 | set wildmode=list:longest " turn on wild mode huge list |
80 | 80 | |
81 | 81 | "Keep the cursor n lines from the top and bottom |
... | ... | @@ -135,7 +135,7 @@ |
135 | 135 | " close nerdtree if it is the last window open |
136 | 136 | autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif |
137 | 137 | " have nerdtree ignore certian file types |
138 | -let NERDTreeIgnore=['\.o$', '\~$', '\.ln'] | |
138 | +let NERDTreeIgnore=['\.o$', '\~$', '\.ln', '\.class', '\.pyc'] | |
139 | 139 | |
140 | 140 | "color scheme |
141 | 141 | set t_Co=256 "this forces vim to use 256 colors even if the console says it is not supported |