Skip to content

Commit aa8bab7

Browse files
committed
emacs: add the org-bullets package
1 parent 1a0b18f commit aa8bab7

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

emacs/init.el

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3056,6 +3056,16 @@
30563056
:config
30573057
(setq multi-term-program "/bin/bash"))
30583058

3059+
;; org-bullets
3060+
3061+
;; [[https://github.com/sabof/org-bullets][org-bullets]] show org-mode bullets as UTF-8 characters.
3062+
3063+
(use-package org-bullets
3064+
:ensure t
3065+
:config
3066+
(setq org-bullets-bullet-list '("" "" "" "" "" ""))
3067+
(org-bullets-mode t))
3068+
30593069
;; TODO org-plus-contrib
30603070

30613071
(use-package org-plus-contrib

emacs/readme.org

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4065,6 +4065,18 @@ search in your emails to get a little context in the conversation.
40654065
(setq multi-term-program "/bin/bash"))
40664066
#+END_SRC
40674067

4068+
** org-bullets
4069+
4070+
[[https://github.com/sabof/org-bullets][org-bullets]] show org-mode bullets as UTF-8 characters.
4071+
4072+
#+BEGIN_SRC emacs-lisp
4073+
(use-package org-bullets
4074+
:ensure t
4075+
:config
4076+
(setq org-bullets-bullet-list '("◉" "○" "✸" "✿" "☼" "⚬"))
4077+
(org-bullets-mode t))
4078+
#+END_SRC
4079+
40684080
** TODO org-plus-contrib
40694081

40704082
#+BEGIN_SRC emacs-lisp

0 commit comments

Comments
 (0)