Enable bullets in org mode

This commit is contained in:
Tom Willemse 2017-03-05 22:14:11 -08:00
parent 4674dcbfd5
commit c818008166

View file

@ -23,6 +23,27 @@ Enable automatic text filling for org-mode.
(add-hook 'org-mode-hook 'auto-fill-mode) (add-hook 'org-mode-hook 'auto-fill-mode)
#+END_SRC #+END_SRC
* Bullets
Show pretty bullets instead of the default asterisk characters.
** Load the contrib module
Org bullets isn't loaded when Org mode is by default, so I should
do that here.
#+BEGIN_SRC emacs-lisp
(require 'org-bullets)
#+END_SRC
** Enable bullets in Org mode
Enable =org-bullets-mode= whenever =org-mode= starts.
#+BEGIN_SRC emacs-lisp
(add-hook 'org-mode-hook 'org-bullets-mode)
#+END_SRC
* Org protocol * Org protocol
Load org-protocol to let external applications add information to Load org-protocol to let external applications add information to