[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: Add emacs-dimmer.
From: |
guix-commits |
Subject: |
01/01: gnu: Add emacs-dimmer. |
Date: |
Mon, 14 Oct 2019 11:20:39 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 534610d820a52dcf76b34515c86d704ded590805
Author: Stephen Webber <address@hidden>
Date: Sun Oct 13 10:38:52 2019 -0500
gnu: Add emacs-dimmer.
* gnu/packages/emacs-xyz.scm (emacs-dimmer): New variable.
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bbafd54..fce49cc 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -54,6 +54,7 @@
;;; Copyright © 2019 Amin Bandali <address@hidden>
;;; Copyright © 2019 Jelle Licht <address@hidden>
;;; Copyright © 2019 Björn Höfling <address@hidden>
+;;; Copyright © 2019 Stephen Webber <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -19161,3 +19162,26 @@ Emacs that integrate with major modes like Org-mode.")
"Elixir-Mode Provides font-locking, indentation and navigation support
for the Elixir programming language.")
(license license:gpl3+)))
+
+(define-public emacs-dimmer
+ (package
+ (name "emacs-dimmer")
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gonewest818/dimmer.el.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1jv9rrv15nb5hpwcaqlpjj932gyisrkwbv11czkg3v0bn7qn6yif"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/gonewest818/dimmer.el")
+ (synopsis "Visually highlights the selected buffer in Emacs")
+ (description "Dimmer provides a minor mode that indicates which buffer is
+currently active by dimming the faces in the other buffers. It does this
+nondestructively, and computes the dimmed faces dynamically such that your
+overall color scheme is shown in a muted form without requiring you to define
+what is a \"dim\" version of every face.")
+ (license license:gpl3+)))