From 511d75639af45038853e765811385fb6d0d590a3 Mon Sep 17 00:00:00 2001 From: deltax Date: Wed, 24 Oct 2018 22:53:03 +0200 Subject: [PATCH] Stop annoying sound on errors - no annoying sound on errors - ignore .git folder --- vim/.vimrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index bbb9cc7..1c23072 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -45,6 +45,22 @@ set splitright " Set colors colorscheme happy_hacking +" Turn on the Wild menu +set wildmenu + +" Ignore compiled files +set wildignore=*.o,*~,*.pyc +if has("win16") || has("win32") + set wildignore+=.git\*,.hg\*,.svn\* +else + set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.DS_Store +endif + +" No annoying sound on errors +set noerrorbells +set novisualbell +set t_vb= +set tm=500 " Apply plugin configurations source ~/.vim/config/pluginconfig.vim