diff options
| -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  | 
