diff --git a/config.org b/config.org index f5727c9..63aed18 100644 --- a/config.org +++ b/config.org @@ -70,6 +70,16 @@ needs to be set up to install them if they aren't already. (require 'org-tempo)) #+end_src + A keybinding to add a new heading is super useful + + #+begin_src emacs-lisp + (add-hook 'org-mode-hook + (lambda () + (define-key org-mode-map + (kbd "") + 'org-insert-heading-after-current))) + #+end_src + ** Source Blocks Pressing tab inside a source block should indent appropriately for its language.