emacs: Add racket and enhance org config
This commit is contained in:
parent
c30db4076b
commit
fad45166cd
3 changed files with 29 additions and 4 deletions
|
|
@ -3,7 +3,7 @@
|
|||
;; Place your private configuration here! Remember, you do not need to run 'doom
|
||||
;; sync' after modifying this file!
|
||||
|
||||
(setq ak/at-work? (getenv "AK_AT_WORK"))
|
||||
(setq ak/at-work? (getenv "I_AM_AT_WORK"))
|
||||
|
||||
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
||||
;; clients, file templates and snippets.
|
||||
|
|
@ -112,12 +112,31 @@
|
|||
org-todo-keywords '(
|
||||
(sequence "NEXT(n)" "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CNCL(k@)")
|
||||
(sequence "[ ](T)" "[-](S)" "[?](W)" "|" "[X](D)")
|
||||
))
|
||||
)
|
||||
org-tag-alist '(
|
||||
;; Places
|
||||
("@home" . ?h)
|
||||
("@work" . ?w)
|
||||
|
||||
;; devices
|
||||
("@phone" . ?p)
|
||||
("@computer" . ?c)
|
||||
|
||||
;;
|
||||
("@email" . ?e)
|
||||
|
||||
))
|
||||
|
||||
(use-package! org-ql)
|
||||
(use-package! org-modern)
|
||||
(use-package! org-bookmark-heading)
|
||||
|
||||
(add-hook! 'org-mode-hook #'+org-init-keybinds-h))
|
||||
|
||||
(use-package! org-contacts
|
||||
:after org
|
||||
:custom (org-contacts-files '("~/org/contacts.org")))
|
||||
|
||||
(use-package! activities
|
||||
:demand t
|
||||
:config
|
||||
|
|
@ -129,6 +148,7 @@
|
|||
|
||||
(activities-mode)
|
||||
(activities-tabs-mode)
|
||||
(setopt tab-bar-show 1)
|
||||
(map!
|
||||
(:prefix ("C-c a" . "Activities")
|
||||
:desc "Switch activity" "a" #'activities-switch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue