@ -256,14 +256,21 @@ Let me search my journal files, not synced to my work computer. Set regexp searc
** =dimmer=
Dims inactive buffers.
Dims inactive buffers. Adjustments for =modus-themes= as suggested.
#+BEGIN_SRC emacs-lisp
(use-package dimmer
:init
(dimmer-mode t)
:config
(setq dimmer-fraction 0.4))
(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)))
#+END_SRC
** =doom-modeline=
@ -358,7 +365,7 @@ Save elfeed state properly when exiting Emacs.
** =git-gutter=
Shows, or at least purports to show, =git diff= in the left margin if the file is being tracked by =git=. The colours don’t seem to work properly with the current theme.
Shows, or at least purports to show, =git diff= in the left margin if the file is being tracked by =git=.
#+BEGIN_SRC emacs-lisp
(use-package git-gutter
@ -505,26 +512,26 @@ In =emacs27= and above, I can set certain headlines not to be exported. I haven
Settings for export, mostly for DW post previews but also fic?? And work I guess, I do that sometimes.
@ -538,11 +545,11 @@ Settings for export, mostly for DW post previews but also fic?? And work I guess
(setq org-export-with-toc nil)
(setq org-export-time-stamp-file nil)
(if (atwork)
(progn
(setq org-export-with-author nil)
(setq org-latex-default-class "article-std"))
(unless (version< emacs-version "27")
(setq org-latex-default-class "memoir")))
(progn
(setq org-export-with-author nil)
(setq org-latex-default-class "article-std"))
(unless (version< emacs-version "27")
(setq org-latex-default-class "memoir")))
(setq org-latex-compiler "xelatex")
(setq org-html-validation-link nil)
(setq org-html-doctype "html5")
@ -599,7 +606,7 @@ Automate a tiny part of something I was previously doing manually.
**** =org-modern= and =org-bullets=
Use =org-modern= on =emacs27= and above (although I’m still not wild about it), =org-bullets= otherwise. [[https://github.com/minad/org-modern/issues/5#issuecomment-1318003940][Fix for issue with table widths]], which makes me slightly less not-wild.
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]].
#+BEGIN_SRC emacs-lisp
(if (version< emacs-version "27")
@ -825,9 +832,7 @@ This is good for auto indentation, folding, killing elements, apparently XPath??