diff options
| author | jdhao <jdhao@hotmail.com> | 2020-11-01 17:37:16 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-11-01 17:37:16 +0800 |
| commit | 7bed2c45509e107841d61bb03958f53887f5cfe6 (patch) | |
| tree | 4217116d2f0615e585c864ddb6ea9f8764bcb19f | |
| parent | 76393d321dbc940032d225bacef81c700e34149a (diff) | |
update wildignore settings
| -rw-r--r-- | core/options.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/options.vim b/core/options.vim index ebcfed1..7722d0f 100644 --- a/core/options.vim +++ b/core/options.vim @@ -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 |
