diff options
author | Ryan Kavanagh <rak@rak.ac> | 2025-02-13 11:14:07 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2025-02-13 11:14:07 -0500 |
commit | 2cb255b7c167c2511fbf3bbd8b58fd7feccbf085 (patch) | |
tree | bf384403572e445abb5b0828d9dcf06c4f41f1b9 /dot_emacs | |
parent | rak-sway: missing dependency on python3-dbus-next (diff) | |
parent | mu4e config changes to deal with flowed text (diff) |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'dot_emacs')
-rw-r--r-- | dot_emacs | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -35,6 +35,8 @@ (default-input-method "TeX") (user-full-name "Ryan Kavanagh") (user-mail-address "rak@rak.ac") + (mail-user-agent 'mu4e-user-agent) + (read-mail-command 'mu4e) :custom-face (default ((t (:family "Iosevka"))))) @@ -553,8 +555,16 @@ Otherwise split the current paragraph into one sentence per line." (use-package message :custom + (message-kill-buffer-on-exit t) (message-citation-line-function 'message-insert-formatted-citation-line) - (message-send-mail-function 'message-send-mail-with-sendmail)) + (message-send-mail-function 'message-send-mail-with-sendmail) + :hook + (message-mode . turn-off-auto-fill) + (message-mode . visual-line-mode) + (message-mode . visual-fill-column-mode)) + +(use-package message-view-patch + :ensure t) (use-package minibuffer :config @@ -680,9 +690,15 @@ Otherwise split the current paragraph into one sentence per line." (message-signature-file . "~/.signature") (sendmail-program . "msmtp"))))) :custom + ;; flowed text in messages + (mu4e-compose-format-flowed t) + ;; This is set to 't' to avoid mail syncing issues when using mbsync (mu4e-change-filenames-when-moving t) + ;; compose messages in new frame + (mu4e-compose-in-new-frame t) + ;; hide long list off addresses from main view and silence warnings ;; about mu4e not recognizing user-mail-address against regexp (mu4e-main-hide-personal-addresses t) @@ -696,6 +712,9 @@ Otherwise split the current paragraph into one sentence per line." ("/gmail/INBOX" . ?g) ("/queensu/INBOX" . ?q)))) +;; provided through git/chezmoi +(use-package mu4e-goodies-tags) + (use-package oauth2 :ensure t) @@ -1173,6 +1192,9 @@ If not, issue a warning." :config (add-to-list 'vc-handled-backends 'git)) +(use-package visual-fill-column + :ensure t) + (use-package wc-mode :ensure t) |