diff options
author | fpi | 2020-02-13 10:41:24 +0100 |
---|---|---|
committer | fpi | 2020-02-23 18:07:14 +0100 |
commit | 579b564ead5dec2cb2680e0b433a58dde9e42422 (patch) | |
tree | 5dc59779752d350df5c5eccb58303c351f059d86 | |
parent | Put Notes into a drawer & separate of clock times (diff) |
Align tags left
-rw-r--r-- | emacs-init.org | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org index 13edbfa..fe9c679 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -1529,6 +1529,8 @@ Hansen's]] configs. downwards. - Drawer for Notes :: Notes go into the =NOTES= drawer. Clocking times should stay separate in the =LOGBOOK= drawer. + - Align tags left :: Fixes problems with line breaking on small + window width. #+begin_src emacs-lisp (use-package org @@ -1575,6 +1577,7 @@ Hansen's]] configs. (org-outline-path-complete-in-steps nil) (org-log-state-notes-into-drawer "NOTES") (org-clock-into-drawer "LOGBOOK") + (org-tags-column 0) :config (add-hook 'org-mode-hook 'turn-on-org-cdlatex) (add-to-list 'org-structure-template-alist (cons "f" "figure")) |