summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMatthias Riße <matrss@0px.xyz>2025-11-21 23:39:57 +0100
committerIan Eure <ian@retrospec.tv>2025-11-22 09:03:26 -0800
commit57230893358edbd1f64f292bed2955def48c0e8d (patch)
treeafd5258ff29fd5b74848754dfa0e4f519bae5f6e /gnu
parent80697353a8a7983b70a8c246434e5861ce03d206 (diff)
gnu: Add emacs-helix.
* gnu/packages/emacs-xyz.scm (emacs-helix): New variable. Change-Id: I94163833047e445584141ecb67281a279f58ee6a
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index afd3ee5ab66..4eb25e039d8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -503,6 +503,36 @@ states–that is, any major mode that supports the bookmark system is
compatible.")
(license license:gpl3+)))
+(define-public emacs-helix
+ (package
+ (name "emacs-helix")
+ (version "0.8.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mgmarlow/helix-mode")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "12frkqmv0qbs4rqxdazki6xvhdb6ykr4xsrzk8ljlj19dniawhd8"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:test-command
+ #~(list "emacs"
+ "-Q"
+ "--batch"
+ "-l"
+ "helix-test.el"
+ "-f"
+ "ert-run-tests-batch-and-exit")))
+ (home-page "https://github.com/mgmarlow/helix-mode")
+ (synopsis "Helix keybindings in Emacs")
+ (description
+ "This package provides a minor mode emulating Helix keybindings.")
+ (license license:gpl3+)))
+
(define-public emacs-sops
(package
(name "emacs-sops")