dotfiles/emacs/.emacs.d/init/oni-org-init.org

24 lines
469 B
Org Mode
Raw Normal View History

2016-10-29 16:38:44 +02:00
#+TITLE: Org mode configuration
2016-11-02 11:47:17 +01:00
#+BEGIN_SRC emacs-lisp
(require 'org)
#+END_SRC
2016-10-29 16:38:44 +02:00
Tell org-mode to fontify code blocks in their specified languages.
#+BEGIN_SRC emacs-lisp
(setq org-src-fontify-natively t)
#+END_SRC
Pressing RET on a link should really follow that link.
#+BEGIN_SRC emacs-lisp
(setq org-return-follows-link t)
#+END_SRC
Enable automatic text filling for org-mode.
#+BEGIN_SRC emacs-lisp
(add-hook 'org-mode-hook 'auto-fill-mode)
#+END_SRC