adding notifications to org-mode and new yasnippet

This commit is contained in:
Chris Cochrun 2021-12-09 05:51:33 -06:00
parent 69dcd671be
commit 0a3d30f317
3 changed files with 38 additions and 2 deletions

10
init.el
View file

@ -233,6 +233,7 @@
"hf" '(helpful-callable :which-key "describe-function")
"hv" '(helpful-variable :which-key "describe-variable")
"hk" '(helpful-key :which-key "describe-key")
"hF" '(describe-face :which-key "describe-face")
"hb" '(general-describe-keybindings :which-key "describe-bindings")
"hi" '(info :which-key "info manual")
"ss" '(consult-line :which-key "consult search")
@ -637,7 +638,7 @@ vertically."
(use-package org
:straight t
:ensure t
:defer 1
:config
(setq org-startup-indented t
org-edit-src-content-indentation 0
@ -801,6 +802,7 @@ vertically."
"gC" 'chris/org-columns-view
"ge" 'org-edit-src-code
"gr" 'revert-buffer
"S" 'org-schedule
"t" 'org-todo)
('insert org-mode-map
"C-i" 'completion-at-point)
@ -1295,6 +1297,12 @@ If on a:
org-icalendar-alarm-time 15
org-icalendar-use-scheduled '(todo-start event-if-todo)))
(use-package org-wild-notifier
:after org
:config
(setq alert-default-style 'libnotify)
(org-wild-notifier-mode +1))
(use-package magit
:commands (magit-status magit-get-current-branch)
:general