me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-format-all-the-code.

* gnu/packages/emacs-xyz.scm (emacs-format-all-the-code): New variable.

Change-Id: I7c6cfae8d881a545ed683324823a71ba2bdd3e79
master
Danny Milosavljevic 2024-04-27 12:47:56 +02:00
parent 0f8bb376b7
commit 8d29f416a9
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 25 additions and 0 deletions

View File

@ -3253,6 +3253,31 @@ programming language used in an Emacs buffer.")
(home-page "https://github.com/lassik/emacs-language-id")
(license license:isc)))
(define-public emacs-format-all-the-code
(package
(name "emacs-format-all-the-code")
(version "0.6.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lassik/emacs-format-all-the-code.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1p8bh96yksbpajx2pqxjc4vf7nfncwc3mvh1fcj8afw53g72is8m"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-inheritenv emacs-language-id))
(synopsis "Auto-format any source code")
(description "This package lets you auto-format source code in many
languages using the same command for all languages, instead of learning
a different Emacs package and formatting command for each language.
Over 70 languages are supported, including Emacs Lisp, Kotlin, Go and
Rust.")
(home-page "https://github.com/lassik/emacs-format-all-the-code")
(license license:expat)))
(define-public emacs-relative-buffers
(let ((release "0.0.1")
(revision "0")