Compare commits
No commits in common. "a4556632b0858b4083e5fbc3530d54f46b4ecdb5" and "e01e02970f56fa7d562c547779fab768cb05c8f2" have entirely different histories.
a4556632b0
...
e01e02970f
17
init.el
17
init.el
@ -497,7 +497,7 @@
|
||||
(advice-add 'grep-read-files :around #'db/grep-read-files)))
|
||||
|
||||
(use-package multisession
|
||||
:init (setq multisession-directory (expand-file-name "multisession/" emacs-d)))
|
||||
:config (setq multisession-directory (expand-file-name "multisession/" emacs-d)))
|
||||
|
||||
(use-package proced
|
||||
:custom ((proced-tree-flag t)
|
||||
@ -1815,7 +1815,20 @@ point to the beginning of buffer first."
|
||||
|
||||
;; MIME creation; signing, and encryption
|
||||
|
||||
(setq mml-attach-file-at-the-end t)
|
||||
(use-package mml
|
||||
:config (progn
|
||||
;; Move to end of message buffer before attaching a file
|
||||
;; http://mbork.pl/2015-11-28_Fixing_mml-attach-file_using_advice
|
||||
|
||||
(define-advice mml-attach-file (:around
|
||||
(orig-fun &rest args)
|
||||
go-to-eob)
|
||||
"Go to the end of buffer before attaching files."
|
||||
(save-excursion
|
||||
(save-restriction
|
||||
(widen)
|
||||
(goto-char (point-max))
|
||||
(apply orig-fun args))))))
|
||||
|
||||
(use-package mm-encode
|
||||
:init (setq mm-encrypt-option nil
|
||||
|
||||
Loading…
Reference in New Issue
Block a user