diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-23 13:51:53 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-03-23 13:51:53 +0300 |
| commit | 1f455e04f9f777dc2ef2d0265d0ee280834a08c3 (patch) | |
| tree | 5a96fa0d0c015dfb143f668160a2cdc1e603aa36 | |
| parent | wigust: Add emacs-outorg. (diff) | |
| download | guix-wigust-1f455e04f9f777dc2ef2d0265d0ee280834a08c3.tar.gz | |
wigust: Add emacs-outshine.
* wigust/packages/emacs.scm (emacs-outshine): New public variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 8df1876..2e35676 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -3854,6 +3854,32 @@ programming-mode, and special action has to be taken to switch to the text-mode (i.e. Org-mode).") (license license:gpl3+)))) +(define-public emacs-outshine + (let ((commit "5f1a6b70231d2811c522e4e5e8c89ff461b311d6")) + (package + (name "emacs-outshine") + (version (git-version "2.0" "1" commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alphapapa/outshine.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1l9v1dfhgg7il11ifbhvcvrg3acfjk9sdxlc3lja1k54d7dp60jv")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-outorg" ,emacs-outorg))) + (home-page "https://github.com/alphapapa/outshine") + (synopsis "Emacs outline with outshine") + (description "Outshine attempts to bring the look&feel of Org-mode to +the (GNU Emacs) world outside of the Org major-mode. It is an extension of +outline-minor-mode (Org-mode itself derives from outline-mode), so there is no +such thing like an 'outshine mode', only `outline-minor-mode' with outshine +extensions loaded.") + (license license:gpl3+)))) + (define-public emacs-lice-el (let ((commit "4339929927c62bd636f89bb39ea999d18d269250")) (package |
