From b271f6e326d13c8a2168634e01808f528ea0f495 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 20 Jun 2016 17:46:08 -0700 Subject: [PATCH] Set `visible-bell` to t to disable audible-bell --- dotfiles/emacs.d/README.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index b0bb1321..a079453b 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -39,7 +39,6 @@ Death to any gui elements in emacs! Do this EARLY so that emacs doesn't redispla (when (fboundp 'menu-bar-mode) (menu-bar-mode -1)) (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) - (setq visible-bell nil) #+END_SRC Tooltips are annoying: #+BEGIN_SRC emacs-lisp @@ -226,6 +225,11 @@ Disable CJK coding/encoding (Chinese/Japanese/Korean characters) #+BEGIN_SRC emacs-lisp (setq utf-translate-cjk-mode nil) #+END_SRC +** Visible Bell +This is set to true to disable the annoying audible bell that plays whenever there is an error. +#+BEGIN_SRC emacs-lisp + (setq visible-bell t) +#+END_SRC ** Misc #+BEGIN_SRC emacs-lisp (defvar iedit-toggle-key-default nil)