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