Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TonCherAmi/org-starless
Hide org-mode heading stars.
https://github.com/TonCherAmi/org-starless
emacs emacs-lisp emacs-package org-mode
Last synced: 2 months ago
JSON representation
Hide org-mode heading stars.
- Host: GitHub
- URL: https://github.com/TonCherAmi/org-starless
- Owner: TonCherAmi
- License: gpl-3.0
- Created: 2020-07-28T23:23:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T15:08:16.000Z (over 4 years ago)
- Last Synced: 2024-08-01T03:43:15.357Z (5 months ago)
- Topics: emacs, emacs-lisp, emacs-package, org-mode
- Language: Emacs Lisp
- Homepage:
- Size: 15.6 KB
- Stars: 24
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* org-starless
This package hides org-mode heading stars.
** Installation
Using use-package + quelpa:
#+BEGIN_SRC elisp
(use-package org-starless
:quelpa (org-starless :repo "TonCherAmi/org-starless" :fetcher github))
#+END_SRC
Alternatively you can just download the archive and manually ~require~ the package.
** Configuration
There are no configurable options, you only need to enable the minor mode:
#+BEGIN_SRC elisp
(add-hook 'org-mode-hook #'org-starless-mode)
#+END_SRC