gnu: Add emacs-spaceleader.
* gnu/packages/emacs-xyz.scm (emacs-spaceleader): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
9562107664
commit
bbe6709ccc
1 changed files with 31 additions and 1 deletions
|
@ -30439,6 +30439,36 @@ of a leader key as used in Vim or the @code{emacs-evil-leader} package,
|
||||||
and allows for an arbitrary number of leader keys.")
|
and allows for an arbitrary number of leader keys.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-spaceleader
|
||||||
|
(let ((commit "35368b03c094399c487cce93ab5b7ac725bd04f5")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "emacs-spaceleader")
|
||||||
|
(version (git-version "0.0.3" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mohkale/spaceleader")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1lg51y59z6igqjw3vgyjc5zw32j11xhzw8y0svlx3ry415b0lnls"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
(list emacs-dash
|
||||||
|
emacs-general
|
||||||
|
emacs-which-key
|
||||||
|
emacs-use-package
|
||||||
|
emacs-bind-map))
|
||||||
|
(home-page "https://github.com/mohkale/spaceleader")
|
||||||
|
(synopsis "Emacs leader key implementation from Spacemacs")
|
||||||
|
(description
|
||||||
|
"@code{emacs-spaceleader} replicates spacemacs' leader key features,
|
||||||
|
without requiring all of spacemacs. The @code{<Leader>} key, inspired by Vim,
|
||||||
|
provides an easy way to bind keys under a configurable prefix key")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-promise
|
(define-public emacs-promise
|
||||||
(package
|
(package
|
||||||
(name "emacs-promise")
|
(name "emacs-promise")
|
||||||
|
|
Reference in a new issue