Stop annoying sound on errors
- no annoying sound on errors - ignore .git folder
This commit is contained in:
parent
8bc5b63ec1
commit
511d75639a
16
vim/.vimrc
16
vim/.vimrc
@ -45,6 +45,22 @@ set splitright
|
|||||||
" Set colors
|
" Set colors
|
||||||
colorscheme happy_hacking
|
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
|
" Apply plugin configurations
|
||||||
source ~/.vim/config/pluginconfig.vim
|
source ~/.vim/config/pluginconfig.vim
|
||||||
|
Loading…
Reference in New Issue
Block a user