aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-21 08:59:59 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-21 08:59:59 +1200
commit437532a0472fe8bc73b493ef766ce437eefa7698 (patch)
treec0e4de2f6c540c545402fbd4993266779d0a3323 /vim/vimrc
parentGreatly expand 'wildignore' (diff)
downloaddotfiles-437532a0472fe8bc73b493ef766ce437eefa7698.tar.gz
dotfiles-437532a0472fe8bc73b493ef766ce437eefa7698.zip
Remove 'wildignore' settings
Changed my mind; they're too bulky for this file. They would probably be better in a plugin file if at all.
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc30
1 files changed, 0 insertions, 30 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 99414e3c..687029b2 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -170,36 +170,6 @@ if has('wildmenu')
set wildmenu
set wildmode=list:longest
- " Don't complete certain files that I'm not likely to want to manipulate
- " from within Vim
- if has('wildignore')
-
- " Archives
- set wildignore+=*.7z,*.bz2,*.gz,*.rar,*.tar,*.xz,*.zip
- set wildignore+=*.7Z,*.BZ2,*.GZ,*.RAR,*.TAR,*.XZ,*.ZIP
- " Binary
- set wildignore+=*.bin,*.iso
- set wildignore+=*.BIN,*.ISO
- " Documents
- set wildignore+=*.djvu,*.pdf,*.xls,*.xlsx
- set wildignore+=*.DJVU,*.PDF,*.XLS,*.XLSX
- " Images
- set wildignore+=*.bmp,*.gif,*.ico,*.jpeg,*.jpg,*.png,*.xcf
- set wildignore+=*.BMP,*.GIF,*.ICO,*.JPEG,*.JPG,*.PNG,*.XCF
- " Mac OS X junk
- set wildignore+=.DS_Store
- " Media
- set wildignore+=*.gifv,*.mid,*.m4a,*.mp3,*.mp4,*.ogg,*.opus,*.ogv,*.webm
- set wildignore+=*.GIFV,*.MID,*.M4A,*.MP3,*.MP4,*.OGG,*.OPUS,*.OGV,*.WEBM
- " Object formats
- set wildignore+=*.a,*.o
- " Version control
- set wildignore+=.git,.hg,.svn,
- " Vim metadata
- set wildignore+=*~,*.swp
-
- endif
-
" Complete files without case sensitivity, if the option is available
if exists('+wildignorecase')
set wildignorecase