mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Added org-timeblock for agenda visualization
This commit is contained in:
parent
4a478d8298
commit
8f093cf3cd
6 changed files with 89 additions and 3 deletions
|
@ -1045,6 +1045,25 @@ tasks."
|
|||
(setq org-yaap-daemon-idle-time 30)
|
||||
(org-yaap-mode 1)
|
||||
|
||||
(add-load-path! "~/.emacs.d/org-timeblock")
|
||||
(require 'org-timeblock)
|
||||
|
||||
(map! :leader :desc "Open org timeblock"
|
||||
"O c" 'org-timeblock)
|
||||
|
||||
(map! :desc "Next day"
|
||||
:map org-timeblock-mode-map
|
||||
:nvmeg "l" 'org-timeblock-day-later)
|
||||
(map! :desc "Previous day"
|
||||
:map org-timeblock-mode-map
|
||||
:nvmeg "h" 'org-timeblock-day-earlier)
|
||||
(map! :desc "Schedule event"
|
||||
:map org-timeblock-mode-map
|
||||
:nvmeg "m" 'org-timeblock-schedule)
|
||||
(map! :desc "Event duration"
|
||||
:map org-timeblock-mode-map
|
||||
:nvmeg "d" 'org-timeblock-set-duration)
|
||||
|
||||
;;;------ magit configuration ------;;;
|
||||
|
||||
;; Need the following two blocks to make magit work with git bare repos
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue