From a9265c931d5ac126a96d338ac4f76078a1b5c573 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sat, 3 Aug 2024 16:15:17 +0100 Subject: [PATCH] Fix ") - 'org-insert-heading-after-current))) - #+end_src + #+begin_src emacs-lisp + (add-hook 'org-mode-hook (lambda () (setq indent-tabs-mode nil))) + #+end_src + +** Keybindings + 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 ** Journal Files Sometimes I like to make a todo list for a day if I've a lot to do,