Add org-mode config
This commit is contained in:
parent
27365e5a11
commit
1b3907e8d6
1 changed files with 11 additions and 0 deletions
|
@ -688,6 +688,17 @@ To start off, first I need to enable lexical binding.
|
||||||
(enable-circe-aligned-nicks))
|
(enable-circe-aligned-nicks))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** Org
|
||||||
|
|
||||||
|
Tell org-mode to fontify code blocks in their specified languages.
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(eval-when-compile (require 'org))
|
||||||
|
|
||||||
|
(with-eval-after-load 'org
|
||||||
|
(setq org-src-fontify-natively t))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
* Custom
|
* Custom
|
||||||
|
|
||||||
Put the customize settings in a different file so that Emacs doesn't
|
Put the customize settings in a different file so that Emacs doesn't
|
||||||
|
|
Loading…
Reference in a new issue