diff options
author | Marcus Quincy <mail@marcusquincy.org> | 2024-09-18 18:11:32 -0600 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-10-15 08:50:39 +0200 |
commit | 689eb490a29e1d73767077037c01377ec62262d0 (patch) | |
tree | 185359268a555947d92cc17bfd79621893e73057 /gnu | |
parent | 02af7ffd4dc1cf4cc72195992c579d77c257fc89 (diff) |
gnu: Add emacs-eglot-booster.
* gnu/packages/emacs-xyz.scm (emacs-eglot-booster): New variable.
Change-Id: If1c12d136f901894e91a34941e5cbf22aac1510e
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 472665757c..62c8643877 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -20832,6 +20832,29 @@ one if it fails.") ") (license license:gpl3+)))) +(define-public emacs-eglot-booster + ;; Not tagged + (let ((commit "3f9159a8b7fe87e2f01280a2c4c98ca6dab49d13")) + (package + (name "emacs-eglot-booster") + (version "0.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jdtsmith/eglot-booster") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1aq5fpfasgm5lz8hk476c1zqyj33m024nx8w9qv4qrg88y5mq5n9")))) + (build-system emacs-build-system) + (home-page "https://github.com/jdtsmith/eglot-booster") + (synopsis "Configuration to use LSP-booster with Eglot") + (description + "This package adds configuration to simplify using Emacs LSP booster +with Eglot.") + (license license:gpl3+)))) + (define-public emacs-jabber ;; No releases available. (let ((commit "e766d84b81d5df6abc30fcbbb94f7c8640ea54e2") |