Browse Source

Disable annoying sound bell in vim.

main
Titouan Rigoudy 3 years ago
committed by Titouan Rigoudy
parent
commit
4627350b0e
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      config.vim

+ 3
- 3
config.vim View File

@ -61,9 +61,9 @@ filetype indent on
" Performance/misc options. " Performance/misc options.
" Don't make annoying sounds on errors. " Don't make annoying sounds on errors.
set noerrorbells
set novisualbell
set t_vb=
set noerrorbells " Errors such as setting inexistent options do not ding.
set visualbell " Errors such as pressing `Esc` in normal mode use visual bell.
set t_vb= " Visual bell does nothing. Result: silent `Esc` in normal mode.
set tm=500 set tm=500
" Don't redraw while executing macros for performance. " Don't redraw while executing macros for performance.


Loading…
Cancel
Save