gnu: Add emacs-evil-leader.

* gnu/packages/emacs-xyz.scm (emacs-evil-leader): New variable.
This commit is contained in:
John Soo 2020-04-01 15:57:49 +02:00 committed by Nicolas Goaziou
parent a97b943b55
commit ec7d4b4de6
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -3386,6 +3386,30 @@ the speedbar window.")
"This package provides a macro that writes your namespaces for you.")
(license license:gpl3+))))
(define-public emacs-evil-leader
(package
(name "emacs-evil-leader")
(version "0.4.3")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/cofi/evil-leader")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"))))
(inputs
`(("emacs-evil" ,emacs-evil)))
(build-system emacs-build-system)
(home-page "https://github.com/cofi/evil-leader")
(synopsis "Implement <leader> feature from Vim")
(description
"Evil Leader provides the @code{<leader>} feature from Vim that provides
an easy way to bind keys under a configurable prefix key.")
(license license:gpl3+)))
(define-public emacs-evil-textobj-syntax
(let ((commit "2d9ba8c75c754b409aea7469f46a5cfa52a872f3")
(version "0")