mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Use org-bullets
This commit is contained in:
parent
8c8a6cc877
commit
89a047d4d4
6
init.org
6
init.org
@ -211,6 +211,7 @@
|
|||||||
multiple-cursors ; Multiple cursors for Emacs
|
multiple-cursors ; Multiple cursors for Emacs
|
||||||
olivetti ; Minor mode for a nice writing environment
|
olivetti ; Minor mode for a nice writing environment
|
||||||
org ; Outline-based notes management and organizer
|
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
|
org-ref ; citations bibliographies in org-mode
|
||||||
paredit ; minor mode for editing parentheses
|
paredit ; minor mode for editing parentheses
|
||||||
pdf-tools ; Emacs support library for PDF files
|
pdf-tools ; Emacs support library for PDF files
|
||||||
@ -676,6 +677,11 @@
|
|||||||
'(progn
|
'(progn
|
||||||
(setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,")
|
(setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,")
|
||||||
(custom-set-variables `(org-emphasis-alist ',org-emphasis-alist))))
|
(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
|
#+END_SRC
|
||||||
|
|
||||||
** Interactive functions
|
** Interactive functions
|
||||||
|
Loading…
Reference in New Issue
Block a user