Compare commits

...

2 Commits

Author SHA1 Message Date
Inhji 7ebdcffb84 add keybinding for org-habit-stats 2024-03-04 21:08:48 +05:45
Inhji df2f8835fc add not much config 2024-03-04 21:08:36 +05:45
2 changed files with 11 additions and 0 deletions

View File

@ -42,6 +42,7 @@
(defun org-path (filename) (expand-file-name filename +user-org-path))
(after! org
(map! :map org-mode-map :localleader "g s" #'org-habit-stats-view-habit-at-point)
(setq org-directory +user-org-path
org-src-tab-acts-natively t)
org-todo-sets '(("TODO" "PROJ" "LOOP" "STRT" "WAIT" "HOLD" "IDEA" "DONE" "KILL")
@ -183,3 +184,5 @@
(after! org-roam
(setq org-roam-directory "~/Notes/Org/Roam")
(setq org-roam-dailies-directory "Daily"))
(setq +notmuch-home-function (lambda () (notmuch-search "folder:INBOX")))

View File

@ -27,6 +27,7 @@
- [[#evil-snipe][evil-snipe]]
- [[#org-noter][org-noter]]
- [[#org-roam][org-roam]]
- [[#notmuch][notmuch]]
* Header
#+begin_src emacs-lisp
@ -45,6 +46,7 @@ These keybindings extend the default doom bindings, either because the defaults
| DEL | Up Directory | Dired |
| F6 | Toggle Light/Dark Theme | |
| F7 | Start Org-Drill | |
| SPC m g s | Go to habit stats | Org |
#+begin_src emacs-lisp
(map! :n "<f12>" #'org-agenda-list)
@ -102,6 +104,7 @@ These keybindings extend the default doom bindings, either because the defaults
(defun org-path (filename) (expand-file-name filename +user-org-path))
(after! org
(map! :map org-mode-map :localleader "g s" #'org-habit-stats-view-habit-at-point)
(setq org-directory +user-org-path
org-src-tab-acts-natively t)
org-todo-sets '(("TODO" "PROJ" "LOOP" "STRT" "WAIT" "HOLD" "IDEA" "DONE" "KILL")
@ -286,3 +289,8 @@ These keybindings extend the default doom bindings, either because the defaults
(setq org-roam-dailies-directory "Daily"))
#+end_src
** notmuch
#+begin_src emacs-lisp
(setq +notmuch-home-function (lambda () (notmuch-search "folder:INBOX")))
#+end_src