diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-06 10:22:35 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-11-06 10:22:35 +0100 |
commit | a931277d0c6f37ca8d1f0e33df25987a10f8665d (patch) | |
tree | 495aa3c285fa8b7e3091bd855b1d492ba0025e28 /config/extra/emacs/config.org | |
parent | e92fe2d61d3e01cbe2351166b8bf809362a5f72d (diff) |
cleaned up org config
Diffstat (limited to 'config/extra/emacs/config.org')
-rw-r--r-- | config/extra/emacs/config.org | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/config/extra/emacs/config.org b/config/extra/emacs/config.org index 50d6af6..2725fa1 100644 --- a/config/extra/emacs/config.org +++ b/config/extra/emacs/config.org @@ -565,21 +565,6 @@ Adding highlights to TODO and related words. #+end_src * ORG Mode -** Enabling Table of Contents -#+begin_src emacs-lisp - (use-package toc-org - :commands toc-org-enable - :init (add-hook 'org-mode-hook 'toc-org-enable)) -#+end_src - -** Enabling Org Bullets -Org-bullets gives us attractive bullets rather than asterisks. - -#+begin_src emacs-lisp - (add-hook 'org-mode-hook 'org-indent-mode) - (use-package org-bullets) - (add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) -#+end_src ** Org Level Headers #+begin_src emacs-lisp @@ -593,6 +578,10 @@ Org-bullets gives us attractive bullets rather than asterisks. '(org-level-7 ((t (:inherit outline-5 :height 1.00))))) #+end_src +** org-tempo +#+begin_src emacs-lisp +(require 'org-tempo) +#+end_src | Typing the below + TAB | Expands to ... | |------------------------+-----------------------------------------| | <a | '#+BEGIN_EXPORT ascii' … '#+END_EXPORT | @@ -606,12 +595,6 @@ Org-bullets gives us attractive bullets rather than asterisks. | <s | '#+BEGIN_SRC' … '#+END_SRC' | | <v | '#+BEGIN_VERSE' … '#+END_VERSE' | - -#+begin_src emacs-lisp -(require 'org-tempo) -#+end_src - - * Shell ** Default shell |