From 93d7d61e19dfdb6be393c1a19bf0bdf82c18e08e Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sat, 15 Feb 2020 15:39:45 -0500 Subject: [PATCH] Disable the bell --- emacs/init.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 3f2046e..de549ad 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -2077,6 +2077,12 @@ Display the column number in programming modes: (add-hook 'prog-mode-hook #'column-number-mode) #+END_SRC +Disable the bell: +#+BEGIN_SRC emacs-lisp + (setq ring-bell-function 'ignore) +#+END_SRC + + Render stuff differently based on whether or not we are graphical: #+BEGIN_SRC emacs-lisp (defun graphical-setup ()