Use org-bullets

This commit is contained in:
Lars Tveito 2020-03-10 20:35:27 +01:00
parent 8c8a6cc877
commit 89a047d4d4

View File

@ -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