diff options
author | Amin Bandali <bandali@gnu.org> | 2019-08-10 21:18:56 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-08-10 21:18:56 -0400 |
commit | 1d405cde0511fbd11573373fa5b9de35d5745725 (patch) | |
tree | 8e9eb5ea22116c2e179a804a4c2dc05d41ab7b19 | |
parent | b188e798a0a4f0ec375f63e34fe26c76872e9acf (diff) | |
download | configs-1d405cde0511fbd11573373fa5b9de35d5745725.tar.gz configs-1d405cde0511fbd11573373fa5b9de35d5745725.tar.xz configs-1d405cde0511fbd11573373fa5b9de35d5745725.zip |
emacs: stop BEEPing
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index a19fcaa..2d69096 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -414,6 +414,10 @@ For disabling the behaviour for certain buffers and/or modes." :custom ((ediff-window-setup-function 'ediff-setup-windows-plain) (ediff-split-window-function 'split-window-horizontally))) +;; i don't feel like jumping out of my chair every now and again; so +;; don't BEEP! at me, emacs +(setq ring-bell-function 'ignore) + ;;; General bindings |