aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/emacs.scm
diff options
context:
space:
mode:
Diffstat (limited to 'oni/packages/emacs.scm')
-rw-r--r--oni/packages/emacs.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm
index 6f20a83..913d1d8 100644
--- a/oni/packages/emacs.scm
+++ b/oni/packages/emacs.scm
@@ -497,3 +497,25 @@ the way, but at the same time will be readable enough to know it's content.")
Syncthing REST API and request package to get this data and display it in an
Emacs buffer.")
(license license:expat))))
+
+(define-public emacs-outli
+ (package
+ (name "emacs-outli")
+ (version "0.1.0")
+ (source
+ (origin
+ (uri (git-reference
+ (url "https://github.com/jdtsmith/outli")
+ (commit (string-append "v" version))))
+ (method git-fetch)
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1yyh334r26pjgcx51rrxacwiranysnhbdz83xgpjwaby280xwlgb"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/jdtsmith/outli")
+ (synopsis "Simple comment-based outlines for Emacs")
+ (description "outli is a simple Emacs outliner for code, documents, and more which styles your
+headings, and emulates org-mode navigation and structure editing. It is based on
+the built-in outline-minor-mode and is simple by design, providing just a few
+key features.")
+ (license license:gpl3+)))