Org goodies
This commit is contained in:
parent
9e9b01ff4e
commit
d64f306db7
1 changed files with 25 additions and 6 deletions
21
init.el
21
init.el
|
@ -710,7 +710,14 @@
|
||||||
entry (file+headline "~/org/notes.org" "Random Notes")
|
entry (file+headline "~/org/notes.org" "Random Notes")
|
||||||
"** %?"
|
"** %?"
|
||||||
:empty-lines 0)
|
:empty-lines 0)
|
||||||
)))
|
))
|
||||||
|
(org-auto-align-tags nil)
|
||||||
|
(org-tags-column 0)
|
||||||
|
(org-catch-invisible-edits 'show-and-error)
|
||||||
|
(org-special-ctrl-a/e t)
|
||||||
|
(org-insert-heading-respect-content t)
|
||||||
|
(org-pretty-entities t)
|
||||||
|
(org-ellipsis "…"))
|
||||||
:bind (("C-c o l" . org-store-link)
|
:bind (("C-c o l" . org-store-link)
|
||||||
("C-c o a" . org-agenda)
|
("C-c o a" . org-agenda)
|
||||||
("C-c o c" . org-capture)
|
("C-c o c" . org-capture)
|
||||||
|
@ -741,8 +748,20 @@ This is meant to be an helper to be called from the window manager."
|
||||||
(use-package org-agenda
|
(use-package org-agenda
|
||||||
:custom
|
:custom
|
||||||
(org-agenda-files '("~/org"))
|
(org-agenda-files '("~/org"))
|
||||||
|
(org-agenda-tags-column 0)
|
||||||
|
(org-agenda-block-separator ?─)
|
||||||
|
(org-agenda-time-grid
|
||||||
|
'((daily today require-timed)
|
||||||
|
(800 1000 1200 1400 1600 1800 2000)
|
||||||
|
" ┄┄┄┄┄ " "┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄"))
|
||||||
|
(org-agenda-current-time-string
|
||||||
|
"◀── now ─────────────────────────────────────────────────")
|
||||||
:bind (("C-c o a" . org-agenda)))
|
:bind (("C-c o a" . org-agenda)))
|
||||||
|
|
||||||
|
(use-package org-modern
|
||||||
|
:after org
|
||||||
|
:init (global-org-modern-mode))
|
||||||
|
|
||||||
(use-package org-roam)
|
(use-package org-roam)
|
||||||
|
|
||||||
(use-package consult-org-roam
|
(use-package consult-org-roam
|
||||||
|
|
Reference in a new issue