From 4e636b399d1fe67eb75bb82c959eee6bbfa77fc5 Mon Sep 17 00:00:00 2001 From: Marrub Date: Thu, 4 Jun 2020 14:22:05 -0600 Subject: [PATCH] emacs: STOP BEEPING --- .gitignore | 1 + emacs/early-init.el | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6339f50..c008f33 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ computers/*/fish/priv +emacs/auto-save-list emacs/backup emacs/custom.el emacs/elpa diff --git a/emacs/early-init.el b/emacs/early-init.el index 4562faf..60a0d9a 100644 --- a/emacs/early-init.el +++ b/emacs/early-init.el @@ -14,7 +14,8 @@ ;; important ergonomics (setq fill-column 80 - sentence-end-double-space nil) + sentence-end-double-space nil + ring-bell-function #'ignore) (defalias #'yes-or-no-p #'y-or-n-p)