From: Don Armstrong Date: Thu, 11 Sep 2025 22:17:22 +0000 (-0700) Subject: turn off bell and set default font X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=27bf7e640fbe43f9351df1a66deff6f718bc66e3;p=lib.git turn off bell and set default font --- diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index cdb19fa..f1f55b4 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -48,6 +48,14 @@ To look up options for symbols for delight, check out https://en.wikipedia.org/w (setq frame-resize-pixelwise t) (add-to-list 'default-frame-alist '(fullscreen . maximixed)) #+END_SRC +** Turn off bell +#+BEGIN_SRC emacs-lisp +(setq visible-bell 1) +#+END_SRC +** Set default font +#+BEGIN_SRC emacs-lisp +(set-frame-font (font-spec :name "Inconsolata 18" :width 'normal :weight 'bold :height 100) nil t) +#+END_SRC * Package management ** Bootstrap straight.el #+BEGIN_SRC emacs-lisp