diff options
author | JSDurand <mmemmew@gmail.com> | 2023-05-28 14:23:11 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-05-28 14:23:11 +0800 |
commit | 841bcc759a58904ab7838eaaa109751a4d3aabb8 (patch) | |
tree | c16ffb7590a17f1c26c6d7a9437c60aa2a9da963 /dashboard.el | |
parent | b5b12a2016b4e0643d6bbea2c060cf7638b1af95 (diff) |
dashboard: bind gnus
* dashboard.el (dashboard-mode-map): Bind `gnus` to 'g' for
conveniently accessing mails.
Diffstat (limited to 'dashboard.el')
-rw-r--r-- | dashboard.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard.el b/dashboard.el index f55666b..efebd97 100644 --- a/dashboard.el +++ b/dashboard.el @@ -76,6 +76,7 @@ common functionalities more conveniently.") (define-key dashboard-mode-map (vector ?l) #'blist) (define-key dashboard-mode-map (vector ?b) #'bookmark-jump) (define-key dashboard-mode-map (vector ?t) #'modeline-toggle) +(define-key dashboard-mode-map (vector ?g) #'gnus) (define-key dashboard-mode-map (vector ?a) #'dashboard-org-agenda) (define-key dashboard-mode-map (vector ?c) #'dashboard-org-capture) (define-key dashboard-mode-map (vector ?l) #'dashboard-org-store-link) |