Problem: my blog used to reliably produce syntax-highlighted code blocks following the syntax highlighting of this Emacs configuration. However, recently, that stopped. This was a result of `htmlize` not being up to date: > Warning (emacs): Cannot fontify source block (htmlize.el >= 1.34 required). > Falling back to plain text. (see `org-html-htmlize-output-type') To resolve this error, I pull in the dependency explicitly, which should result in org export using the correct, updated version. Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
16 lines
366 B
EmacsLisp
16 lines
366 B
EmacsLisp
;;; priime-elisp.el --- Elisp configuration
|
|
;;; Commentary:
|
|
;; Provides configuration for Elisp-related libraries and functions
|
|
;;; Code:
|
|
|
|
(require 'straight)
|
|
|
|
(use-package s :straight t)
|
|
(use-package f :straight t)
|
|
(use-package ht :straight t)
|
|
(use-package dash :straight t)
|
|
(use-package htmlize :straight t)
|
|
|
|
(provide 'priime-elisp)
|
|
|
|
;;; priime-elisp.el ends here
|