1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update wildignore settings

This commit is contained in:
jdhao 2020-11-01 17:37:16 +08:00
parent 76393d321d
commit 7bed2c4550

View File

@ -60,7 +60,6 @@ set showbreak=↪
" List all matches and complete till longest common string
set wildmode=list:longest
set wildignorecase " ignore file and dir name cases in cmd-completion
set cursorline " Show current line where the cursor is
@ -81,9 +80,11 @@ set inccommand=nosplit " Show the result of substitution in real time for previ
" Ignore certain files and folders when globbing
set wildignore+=*.o,*.obj,*.bin,*.dll,*.exe
set wildignore+=*/.git/*,*/.svn/*,*/__pycache__/*,*/build/**
set wildignore+=*.jpg,*.png,*.jpeg,*.bmp,*.gif,*.tiff
set wildignore+=*.pyc
set wildignore+=*.DS_Store
set wildignore+=*.aux,*.bbl,*.blg,*.brf,*.fls,*.fdb_latexmk,*.synctex.gz
set wildignorecase " ignore file and dir name cases in cmd-completion
" Ask for confirmation when handling unsaved or read-only files
set confirm