aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc28
1 files changed, 27 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 6b5fce34..ab4729ec 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -187,7 +187,29 @@ if has('persistent_undo')
set undodir^=$MYVIMRUNTIME/cache/undo//
endif
-" Tab completion settings; see also plugin/wildignore.vim
+" Tab completion settings
+set wildignore=*~
+ \,*.7z
+ \,*.a,*.adf,*.asc,*.au,*.aup,*.avi
+ \,*.bin,*.bmp,*.bz2
+ \,*.class
+ \,*.db,*.dbm,*.djvu,*.docx
+ \,*.exe
+ \,*.filepart,*.flac
+ \,*.gd2,*.gif,*.gifv,*.gmo,*.gpg,*.gz
+ \,*.hdf
+ \,*.ico,*.iso
+ \,*.jar,*.jpeg,*.jpg
+ \,*.m4a,*.mid,*.mp3,*.mp4
+ \,*.o,*.odp,*.ods,*.odt,*.ogg,*.ogv,*.opus
+ \,*.pbm,*.pdf,*.png,*.ppt,*.psd,*.pyc
+ \,*.rar,*.rm
+ \,*.s3m,*.sdbm,*.sqlite,*.swf,*.swp
+ \,*.tar,*.tga,*.ttf
+ \,*.wav,*.webm
+ \,*.xbm,*.xcf,*.xls,*.xlsx,*.xpm,*.xz
+ \,*.zip
+ \,.DS_Store,.git,.hg,.svn
if exists('+wildignorecase')
set wildignorecase " Case insensitive, if supported (v7.3.072)
endif
@@ -432,5 +454,9 @@ nnoremap <Leader>: ^"zyg_:<C-R>z<CR>
" \! executes line with 'shell'
nnoremap <Leader>! ^"zyg_:!<C-R>z<CR>
+" Things I almsot always type wrnog
+inoreabbrev almsot almost
+inoreabbrev wrnog wrong
+
" Source any .vim files from ~/.vim/config
runtime! config/*.vim