Make the =C-c C-j= binding more useful
#+BEGIN_SRC emacs-lisp
(setq org-goto-interface 'outline-path-completion
- org-outline-path-complete-in-steps nil
org-goto-max-level 9)
#+END_SRC
:PROPERTIES:
:ID: 99906320-74b0-4414-8d87-1ce1ddddad97
:END:
-Give me logical in/out-denting on the easier binding.
+Give me logical in/out-denting on the easier binding, since I use that more often.
#+BEGIN_SRC emacs-lisp
(add-hook 'org-mode-hook
(lambda ()
:PROPERTIES:
:ID: a0e6d683-63ac-4cfe-b2fc-4eb0d096f704
:END:
-Go back to previous view on quit, always start on current day, warn me for 30 days of a deadline, use the current window for the agenda, and don't show tags.
+Go back to previous view on quit, always start on current day, warn me for 30 days of a deadline, use the current window for the agenda, and don't show tags, but show full heirarchy.
#+BEGIN_SRC emacs-lisp
(setq org-agenda-restore-windows-after-quit t
org-agenda-start-on-weekday nil
org-deadline-warning-days 30
org-agenda-window-setup 'current-window
- org-agenda-remove-tags t)
+ org-agenda-remove-tags t
+ org-agenda-prefix-format '((agenda . " %:c %b %?-12t% s")
+ (todo . " %:c % b")
+ (tags . " %:c % b")
+ (search . " %:c % b")))
#+END_SRC
**** Custom View