fix (vimrc): disable ringing the bell for all events

This commit is contained in:
eeemsi 2023-02-03 10:37:32 +01:00
parent ea909b00d7
commit b023b1a049
1 changed files with 3 additions and 0 deletions

3
vimrc
View File

@ -28,6 +28,9 @@ let g:netrw_banner=0
" Tree style listing in netrw
let g:netrw_liststyle = 3
" disable ringing the bell for all events
set belloff=all
" Automatically remove trailing whitespace
autocmd! BufWrite * mark ' | silent! %s/\s\+$// | norm '