From 9790a4c55b487667cb6b396b919d5333c5091b9c Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 24 Sep 2021 07:30:35 -0500 Subject: [PATCH] mu4e attachements --- README.org | 9 ++++++--- init.el | 8 +++++--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index 8b58d619..fcc4d5ef 100644 --- a/README.org +++ b/README.org @@ -97,7 +97,7 @@ In order to have this config work on both my desktop with regular joe-schmoe mon :height chris/default-font-size) (set-face-attribute 'fixed-pitch nil :font "VictorMono Nerd Font" :height chris/default-font-size) - (set-face-attribute 'variable-pitch nil :font "Cantarell" + (set-face-attribute 'variable-pitch nil :font "Noto Sans" :height (+ chris/default-font-size (/ chris/default-font-size 8)) :weight 'regular)) @@ -1646,7 +1646,10 @@ If on a: (chris/leader-keys :states 'normal :keymaps 'override - "om" 'mu4e)) + "om" 'mu4e) + (general-def 'normal mu4e-view-mode-map + "ga" 'mu4e-view-save-attachments)) + #+end_src @@ -1903,7 +1906,7 @@ Let's use pdf-tools for a lot better interaction with pdfs. #+begin_src emacs-lisp (use-package eaf :straight (:host github :repo "manateelazycat/emacs-application-framework" - :files ("*")) + :files ("*.el" "*.py" "core" "app")) :defer 1 :config (setq eaf-browser-dark-mode t)) diff --git a/init.el b/init.el index c38b01a6..2bbbf774 100644 --- a/init.el +++ b/init.el @@ -32,7 +32,7 @@ :height chris/default-font-size) (set-face-attribute 'fixed-pitch nil :font "VictorMono Nerd Font" :height chris/default-font-size) - (set-face-attribute 'variable-pitch nil :font "Cantarell" + (set-face-attribute 'variable-pitch nil :font "Noto Sans" :height (+ chris/default-font-size (/ chris/default-font-size 8)) :weight 'regular)) @@ -1210,7 +1210,9 @@ If on a: (chris/leader-keys :states 'normal :keymaps 'override - "om" 'mu4e)) + "om" 'mu4e) + (general-def 'normal mu4e-view-mode-map + "ga" 'mu4e-view-save-attachments)) (use-package org-msg :hook (mu4e-compose-mode . org-msg-edit-mode) @@ -1426,7 +1428,7 @@ If on a: (use-package eaf :straight (:host github :repo "manateelazycat/emacs-application-framework" - :files ("*")) + :files ("*.el" "*.py" "core" "app")) :defer 1 :config (setq eaf-browser-dark-mode t))