From 89a047d4d42b4c69985542255f78fddd18896ef4 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Tue, 10 Mar 2020 20:35:27 +0100 Subject: [PATCH] Use org-bullets --- init.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.org b/init.org index 9d328f2..a1e3b09 100644 --- a/init.org +++ b/init.org @@ -211,6 +211,7 @@ multiple-cursors ; Multiple cursors for Emacs olivetti ; Minor mode for a nice writing environment org ; Outline-based notes management and organizer + org-bullets ; Show bullets in org-mode as UTF-8 characters org-ref ; citations bibliographies in org-mode paredit ; minor mode for editing parentheses pdf-tools ; Emacs support library for PDF files @@ -676,6 +677,11 @@ '(progn (setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,") (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)))) + + Enable org-bullets when opening org-files. + + #+BEGIN_SRC emacs-lisp + (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) #+END_SRC ** Interactive functions