Browse Source

org visual customizations

master
Marc 4 years ago
parent
commit
778f9df4bf
1 changed files with 21 additions and 15 deletions
  1. 36
      init.org

36
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:

Loading…
Cancel
Save