From 778f9df4bf6c2292b31a9d051d3a67b0b7891296 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 8 Dec 2019 17:06:35 +0000 Subject: [PATCH] org visual customizations --- init.org | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/init.org b/init.org index d318737..4d79fa6 100644 --- a/init.org +++ b/init.org @@ -289,21 +289,27 @@ Some windows specific stuff :ID: 3877251e-5ece-4006-baa6-1f1b4846a8f3 :END: #+BEGIN_SRC emacs-lisp - (use-package org - :ensure org-plus-contrib - :mode (("\.org$" . org-mode)) - :init - (add-hook 'org-mode-hook 'company/org-mode-hook) - :config - (setq org-modules (quote (org-id - org-habit - ))) - (setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") - org-agenda-files (list MY--PATH_ORG_FILES - MY--PATH_ORG_FILES_MOBILE) - org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations") - org-log-into-drawer "LOGBOOK") - (setq org-src-window-setup 'current-window)) ;; C-c ' opens in current window + (use-package org + :ensure org-plus-contrib + :mode (("\.org$" . org-mode)) + :init + (add-hook 'org-mode-hook 'company/org-mode-hook) + :config + (setq org-modules (quote (org-id + org-habit + ))) + (setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") + org-agenda-files (list MY--PATH_ORG_FILES + MY--PATH_ORG_FILES_MOBILE) + org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations") + org-log-into-drawer "LOGBOOK") + + ;; some display customizations + (setq org-pretty-entities t + org-startup-truncated t + org-startup-align-all-tables t) + + (setq org-src-window-setup 'current-window)) ;; C-c ' opens in current window #+END_SRC ** habits :PROPERTIES: