Enable bullets in org mode
This commit is contained in:
parent
4674dcbfd5
commit
c818008166
1 changed files with 21 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue