diff options
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9dd5289bc2..daac69e6c3 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8176,6 +8176,27 @@ other markup language major modes.") configuration, cache, and other data.") (license license:gpl3+))) +(define-public emacs-standard-themes + (package + (name "emacs-standard-themes") + (version "2.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://elpa.gnu.org/packages/standard-themes-" + version ".tar")) + (sha256 + (base32 "0x7fphd36kwg4vfwix5rq7260xl6x6cjfwsq11rj4af30sm4hlfn")))) + (build-system emacs-build-system) + (home-page "https://github.com/protesilaos/standard-themes") + (synopsis "Like the default Emacs theme but more consistent") + (description + "The standard-themes are a pair of light and dark themes for GNU Emacs. +They emulate the out-of-the-box looks of Emacs (which technically do +@emph{not} constitute a theme) while bringing to them thematic consistency, +customizability, and extensibility.") + (license license:gpl3+))) + (define-public emacs-string-inflection (package (name "emacs-string-inflection") |