From 809ab220195b682b96f5b5529673c934a7900c5a Mon Sep 17 00:00:00 2001 From: Max Regan Date: Tue, 14 Jul 2020 09:39:39 -0700 Subject: [PATCH] emacs: disable alert bell --- .emacs.d/init.org | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.org b/.emacs.d/init.org index 1802fc0..540b05e 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -56,6 +56,7 @@ Configure some startup parameters. (setq inhibit-splash-screen t) ;; disable the splash screen on boot (menu-bar-mode 0) ;; disable the menu bar (tool-bar-mode 0) ;; disable the tool bar + (setq alert-bell-function "ignore") (if (window-system) (scroll-bar-mode nil)) ;; disable scroll bars #+END_SRC