diff options
author | Dominic Martinez <dom@dominicm.dev> | 2022-05-16 14:50:06 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-01 23:28:18 +0200 |
commit | cfc353227a5cb457c21d26188c097996f29c9556 (patch) | |
tree | c84d810ea26350cf9d2bcd71d7fa0a15fef322d9 | |
parent | 1e1de837190d1c08fae369a4cb3bf43a433abed1 (diff) | |
download | guix-cfc353227a5cb457c21d26188c097996f29c9556.tar guix-cfc353227a5cb457c21d26188c097996f29c9556.tar.gz |
gnu: emacs-doom-themes: Include extension files.
Newer versions of `emacs-doom-themes' separated extension support into a
separate directory, so this change includes those files.
* gnu/packages/emacs-xyz.scm (emacs-doom-themes)[arguments]: Consider
extensions/*.el files.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 178b8ab90a..ced6e1a482 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -109,6 +109,7 @@ ;;; Copyright © 2022 Brandon Lucas <br@ndon.dk> ;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com> ;;; Copyright © 2022 jgart <jgart@dismail.de> +;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev> ;;; ;;; This file is part of GNU Guix. ;;; @@ -27690,7 +27691,9 @@ contrast and few colors.") ;; EMACSLOADPATH. (for-each (lambda (f) (rename-file f (basename f))) - (find-files "./themes" ".*\\.el$")) + (append + (find-files "./themes" ".*\\.el$") + (find-files "./extensions" ".*\\.el$"))) #t))))) (synopsis "Wide collection of color themes for Emacs") (description "Emacs-doom-themes contains numerous popular color themes for |