(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.
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
*** 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