From: rearman Date: Thu, 6 Jun 2024 15:26:53 +0000 (-0400) Subject: Change to a mono theme X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b57ba75a393779d771e198bb11dc74f0349a9d2a;p=emacsinit.git Change to a mono theme --- diff --git a/init.org b/init.org index 48dfa5e..95eba9d 100644 --- a/init.org +++ b/init.org @@ -126,6 +126,14 @@ Non-gnu is in the defaults now, so I only need to add melpa. (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) #+END_SRC +*** almost-mono-themes +Exactly what they say they are +#+BEGIN_SRC emacs-lisp +(use-package almost-mono-themes + :ensure t + :config + (load-theme 'almost-mono-white t)) +#+END_SRC *** Packages I don't want on my work computers I don't need these on a windows PC or android. @@ -437,9 +445,10 @@ Show matching parens immediately, and "highlight" the whole expression. show-paren-style 'expression) #+END_SRC -Make the paren "highlight" the same color as the background, and add underline. +Make the paren "highlight" the same color as the background, with no overwrite of foreground color, and add underline. #+BEGIN_SRC emacs-lisp (set-face-attribute 'show-paren-match nil + :foreground 'unspecified :background 'unspecified :underline t) #+END_SRC @@ -1279,7 +1288,7 @@ Also add that defun to =safe-local-variables= so that emacs will run it. *** Auto-Generate IDs **** On Capture -Generate an ID when I capture someting, and when I try to link to it. +Generate an ID when I link to someting. #+BEGIN_SRC emacs-lisp (setq org-id-link-to-org-use-id 'create-if-interactive-and-no-custom-id) #+END_SRC