Commit 427c3fc0 authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed duplicate wildignore definition

parent 66a17de5
...@@ -50,7 +50,7 @@ set visualbell t_vb= noerrorbells ...@@ -50,7 +50,7 @@ set visualbell t_vb= noerrorbells
" Enable wildmenu for browsing files in :e command " Enable wildmenu for browsing files in :e command
set wildmenu set wildmenu
set wildcharm=<TAB> set wildcharm=<TAB>
set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.bc set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.bc,*.old,*.cmi,*.cmx
" File explorer " File explorer
let g:netrw_liststyle=3 " Use tree-mode as default view let g:netrw_liststyle=3 " Use tree-mode as default view
...@@ -61,7 +61,6 @@ let g:netrw_preview=1 " Preview window shown in a vsplit ...@@ -61,7 +61,6 @@ let g:netrw_preview=1 " Preview window shown in a vsplit
" --------- " ---------
set history=1000 undolevels=1000 set history=1000 undolevels=1000
set wildignore=*.swp,*.bak,*.pyc,*.class,*.old
set hlsearch " highlight search terms set hlsearch " highlight search terms
set incsearch " show search matches as you type set incsearch " show search matches as you type
set ignorecase smartcase " clever case sensitivity set ignorecase smartcase " clever case sensitivity
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment