Disable the bell

This commit is contained in:
Jeremy Dormitzer 2020-02-15 15:39:45 -05:00
parent a10d31c7aa
commit 93d7d61e19

View File

@ -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 ()