@ -259,18 +259,12 @@ Let me search my journal files, not synced to my work computer. Set regexp searc
Dims inactive buffers. Adjustments for =modus-themes= as suggested.
#+BEGIN_SRC emacs-lisp
(if (version< emacs-version "27")
(use-package dimmer
:init
(dimmer-mode t)
:config
(setq dimmer-fraction 0.4))
(use-package dimmer
:config
(setq dimmer-fraction 0.4)
(setq dimmer-adjustment-mode :foreground)
(setq dimmer-use-colorspace :rgb)
(dimmer-mode 1)))
(use-package dimmer
:config
(setq dimmer-fraction 0.4)
(setq dimmer-adjustment-mode :foreground)
(setq dimmer-use-colorspace :rgb)
(dimmer-mode 1))
#+END_SRC
** =doom-modeline=
@ -381,12 +375,9 @@ Shows, or at least purports to show, =git diff= in the left margin if the file i
** =lastfm=
This works only for =emacs27= and above, and I don’t want to use it at work, so here’s a nested =unless= in case my Emacs version ever gets updated there.
#+BEGIN_SRC emacs-lisp
(unless (version< emacs-version "27")
(unless (atwork)
(use-package lastfm)))
(unless (atwork)
(use-package lastfm))
#+END_SRC
** =markdown-mode=
@ -500,13 +491,12 @@ Track when I complete todos.
*** Export settings
In =emacs27= and above, I can set certain headlines not to be exported. I haven’t used this yet but it sounds useful.
This can set certain headlines not to be exported. I haven’t used it yet but it sounds useful.
#+BEGIN_SRC emacs-lisp
(unless (version< emacs-version "27")
(use-package org-contrib)
(require 'ox-extra)
(ox-extras-activate '(ignore-headlines)))
(use-package org-contrib)
(require 'ox-extra)
(ox-extras-activate '(ignore-headlines))
#+END_SRC
Add a couple of classes for LaTeX export.
@ -555,19 +545,18 @@ Settings for export, mostly for DW post previews but also fic?? And work I guess
Export non-breaking spaces properly; from, believe it or not, [[https://orgmode.org/manual/Advanced-Export-Configuration.html][the Org Manual]].
Use =org-modern= on =emacs27= and above, =org-bullets= otherwise. [[https://github.com/minad/org-modern/issues/5#issuecomment-1318003940][Fix for issue with table widths]].
Use =org-modern=. [[https://github.com/minad/org-modern/issues/5#issuecomment-1318003940][Fix for issue with table widths]].