From c818008166296ad33452c5cc637ea47b99ce954d Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 5 Mar 2017 22:14:11 -0800 Subject: Enable bullets in org mode --- emacs/.emacs.d/init/oni-org-init.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'emacs') diff --git a/emacs/.emacs.d/init/oni-org-init.org b/emacs/.emacs.d/init/oni-org-init.org index 36f7be3..8df48ad 100644 --- a/emacs/.emacs.d/init/oni-org-init.org +++ b/emacs/.emacs.d/init/oni-org-init.org @@ -23,6 +23,27 @@ Enable automatic text filling for org-mode. (add-hook 'org-mode-hook 'auto-fill-mode) #+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 Load org-protocol to let external applications add information to -- cgit v1.2.3-54-g00ecf