diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-22 17:32:32 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-22 17:32:32 +0300 |
| commit | 26e3cec56b758310a40d48b49639d12fc0abe532 (patch) | |
| tree | 16ac36e1627435d1b84491e7e44223fcbf1157af | |
| parent | wigust: Add emacs-eros. (diff) | |
| download | guix-wigust-26e3cec56b758310a40d48b49639d12fc0abe532.tar.gz | |
wigust: Add emacs-parinfer-mode.
* wigust/packages/emacs.scm (emacs-parinfer-mode): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 048cd2b..7ccf275 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1764,3 +1764,28 @@ to perform regression test for packages that provide font-lock rules.") (synopsis "Evaluation result overlays") (description "@code{eros} provides evaluation result overlays.") (license license:gpl3+)))) + +(define-public emacs-parinfer-mode + (package + (name "emacs-parinfer-mode") + (version "0.4.10") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/DogLooksGood/parinfer-mode/archive/" + "v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "06ba9qi59sm9ih9m38fbr8kj4qkvrm58n0c0ngfjz60gnr9x9pcv")))) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-rainbow-delimiters" ,emacs-rainbow-delimiters) + ("emacs-company" ,emacs-company))) + (build-system emacs-build-system) + (home-page "https://github.com/DogLooksGood/parinfer-mode/") + (synopsis "Lisp structure editing mode") + (description "@code{parinfer-mode} is a proof-of-concept editor +mode for Lisp programming languages. It will infer some changes to +keep Parens and Indentation inline with one another.") + (license license:gpl3+))) |
