]> git.earman.xyz Git - emacsinit.git/commitdiff
Change to a mono theme
authorrearman <rearman@r717.net>
Thu, 6 Jun 2024 15:26:53 +0000 (11:26 -0400)
committerrearman <rearman@r717.net>
Thu, 6 Jun 2024 15:26:53 +0000 (11:26 -0400)
init.org

index 48dfa5eb193ea70cf3de7de46d9d508d2d133406..95eba9dd857efdab1deb88e38e6d511df7dd39b7 100644 (file)
--- 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