|
|
@ -253,19 +253,20 @@ Some windows specific stuff |
|
|
|
* orgmode |
|
|
|
** org |
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
(use-package org |
|
|
|
:ensure org-plus-contrib |
|
|
|
:init |
|
|
|
(add-hook 'org-mode-hook 'company/org-mode-hook) |
|
|
|
:config |
|
|
|
;; (require 'org-id) |
|
|
|
(add-to-list 'org-modules "org-id") |
|
|
|
(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")) |
|
|
|
(org-id-update-id-locations) |
|
|
|
(use-package org |
|
|
|
:ensure org-plus-contrib |
|
|
|
:init |
|
|
|
(add-hook 'org-mode-hook 'company/org-mode-hook) |
|
|
|
:config |
|
|
|
;; (require 'org-id) |
|
|
|
(add-to-list 'org-modules "org-id") |
|
|
|
(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 |
|
|
|
(org-id-update-id-locations) |
|
|
|
#+END_SRC |
|
|
|
** habits |
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|