config/doom: tweak my agenda
This commit is contained in:
parent
4be82b0adb
commit
b81a70c474
|
@ -301,7 +301,8 @@ Version 2019-11-04 2021-02-16"
|
|||
(map! :map org-mode-map
|
||||
:leader
|
||||
"\\" 'org-ctrl-c-ctrl-c
|
||||
:desc "Agenda" "oA" (lambda () (interactive) (org-agenda nil "d"))
|
||||
:desc "Agenda" "oa" 'org-agenda
|
||||
:desc "My Agenda" "oA" (lambda () (interactive) (org-agenda nil "d"))
|
||||
:localleader
|
||||
"C" 'org-clock-in
|
||||
"v" 'org-insert-heading
|
||||
|
@ -485,13 +486,15 @@ Version 2019-11-04 2021-02-16"
|
|||
(use-package! org-journal
|
||||
;; Prompt after idleness - Focused? ETC? (Pragmatic Programmer)
|
||||
:init
|
||||
|
||||
(setq org-journal-file-type 'monthly
|
||||
org-journal-file-format "%Y%m.org"
|
||||
org-journal-created-property-timestamp-format time-stamp-format
|
||||
org-journal-carryover-delete-empty-journal 'always
|
||||
org-journal-date-format (concat "[" time-stamp-bare " %3a]")
|
||||
org-journal-time-format "%02H "
|
||||
org-journal-time-format "%02H.%01M "
|
||||
)
|
||||
|
||||
:config
|
||||
; TODO map njj to open-or-create-entry
|
||||
|
||||
|
@ -814,6 +817,11 @@ This is 0.3 red + 0.59 green + 0.11 blue and always between 0 and 255."
|
|||
(call-process "xdg-open" nil 0 nil file)
|
||||
(find-file file))))
|
||||
|
||||
; maybe add +org/close-fold
|
||||
(map! :n "<escape>" (lambda () (interactive) (if (eq major-mode 'org-mode) (condition-case nil (org-up-element) (error (dired-jump))) (dired-jump)))
|
||||
:leader
|
||||
"." 'dired-jump)
|
||||
|
||||
(map! :map dired-mode-map
|
||||
:n "RET" 'dired-find-file-dwim
|
||||
:n "l" 'dired-find-file-dwim
|
||||
|
|
|
@ -145,7 +145,7 @@
|
|||
;;nim ; python + lisp at the speed of c
|
||||
;;nix ; I hereby declare "nix geht mehr!"
|
||||
;;ocaml ; an objective camel
|
||||
(org +pretty +dragndrop +journal +roam2 +pomodoro +noter +present +pandoc) ; organize your plain life in plain text
|
||||
(org +pretty +dragndrop +journal +roam2 +pomodoro +noter +present) ;+pandoc) ; organize your plain life in plain text
|
||||
;;php ; perl's insecure younger brother
|
||||
plantuml ; diagrams for confusing people more
|
||||
;;purescript ; javascript, but functional
|
||||
|
|
|
@ -19,8 +19,9 @@
|
|||
(if (file-equal-p command-line-default-directory "~")
|
||||
(setq default-directory org-directory))
|
||||
(setq org-agenda-files (append
|
||||
(directory-files-recursively (expand-file-name "project/" org-directory) ".org\\'")
|
||||
(list (expand-file-name "inbox/"))
|
||||
;(directory-files-recursively (expand-file-name "project/" org-directory) ".org\\'")
|
||||
;(list (expand-file-name "inbox/"))
|
||||
(list (expand-file-name "agenda/"))
|
||||
))
|
||||
))
|
||||
|
||||
|
|
Loading…
Reference in New Issue