Skip to content
Snippets Groups Projects
Unverified Commit c86c1991 authored by Arun Isaac's avatar Arun Isaac Committed by Ludovic Courtès
Browse files

gnu: Add emacs-linum-relative.


* gnu/packages/emacs.scm (emacs-linum-relative): New variable.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 239cf024
No related branches found
No related tags found
No related merge requests found
...@@ -3963,6 +3963,27 @@ (define-public emacs-memoize ...@@ -3963,6 +3963,27 @@ (define-public emacs-memoize
memoizing functions.") memoizing functions.")
(license license:unlicense))) (license license:unlicense)))
(define-public emacs-linum-relative
(package
(name "emacs-linum-relative")
(version "0.5")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/coldnew/linum-relative/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
(build-system emacs-build-system)
(home-page "https://github.com/coldnew/linum-relative")
(synopsis "Relative line numbering for Emacs")
(description "@code{emacs-linum-relative} displays the relative line
number on the left margin in Emacs.")
(license license:gpl2+)))
(define-public emacs-idle-highlight (define-public emacs-idle-highlight
(package (package
(name "emacs-idle-highlight") (name "emacs-idle-highlight")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment