diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mail-config.el | 18 | ||||
| -rw-r--r-- | modules/text-config.el | 2 |
2 files changed, 11 insertions, 9 deletions
diff --git a/modules/mail-config.el b/modules/mail-config.el index 170711bb..28423f52 100644 --- a/modules/mail-config.el +++ b/modules/mail-config.el @@ -47,19 +47,21 @@ Prompts user for the action when executing." ;; --------------------------------- Mu4e Email -------------------------------- +(autoload 'mu4e "mu4e" "Launch mu4e email client." t) +(keymap-global-set "C-c m" #'mu4e) + (use-package mu4e :ensure nil ;; mu4e gets installed by installing 'mu' via the system package manager :load-path "/usr/share/emacs/site-lisp/mu4e/" :commands (mu4e mu4e-update-index) :bind - ("C-c m". mu4e) - (:map mu4e-headers-mode-map - ("M" . cj/mu4e-mark-all-headers) - ("D" . mu4e-headers-mark-for-trash) - ("d" . mu4e-headers-mark-for-delete)) - (:map mu4e-view-mode-map - ("r" . mu4e-compose-wide-reply) - ("R" . mu4e-compose-reply)) + ((:map mu4e-headers-mode-map + ("M" . cj/mu4e-mark-all-headers) + ("D" . mu4e-headers-mark-for-trash) + ("d" . mu4e-headers-mark-for-delete)) + (:map mu4e-view-mode-map + ("r" . mu4e-compose-wide-reply) + ("R" . mu4e-compose-reply))) :hook (mu4e-view-mode . turn-on-visual-line-mode) :config diff --git a/modules/text-config.el b/modules/text-config.el index 30f63aa2..4e9208bc 100644 --- a/modules/text-config.el +++ b/modules/text-config.el @@ -60,7 +60,7 @@ ;; edit selection in new buffer, C-c to finish; replaces with modifications (use-package edit-indirect - :bind ("M-S-i" . edit-indirect-region) ;; was M-I) + :bind ("M-S-i" . edit-indirect-region)) ;; was M-I ;; ------------------------------ Prettify Symbols ----------------------------- ;; replacing the word l-a-m-b-d-a with a symbol, just because |
