[Emacs] Remove obsolete variable, favor csetq to setq
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
4a980af18d
commit
a494188cfa
@ -1656,14 +1656,13 @@ configuration for the ~mu4e~ package itself.
|
|||||||
:straight (:build t :location site)
|
:straight (:build t :location site)
|
||||||
:commands mu4e mu4e-compose-new
|
:commands mu4e mu4e-compose-new
|
||||||
:init
|
:init
|
||||||
(setq mu4e-completing-read-function 'completing-read
|
(csetq mu4e-completing-read-function 'completing-read
|
||||||
mu4e-use-fancy-chars t
|
mu4e-use-fancy-chars t
|
||||||
mu4e-view-show-images t
|
|
||||||
message-kill-buffer-on-exit t
|
message-kill-buffer-on-exit t
|
||||||
mu4e-org-support nil)
|
mu4e-org-support nil)
|
||||||
(let ((dir "~/Downloads/mu4e"))
|
(let ((dir (concat (getenv "HOME") "/Downloads/mu4e")))
|
||||||
(when (file-directory-p dir)
|
(when (file-directory-p dir)
|
||||||
(setq mu4e-attachment-dir dir)))
|
(csetq mu4e-attachment-dir dir)))
|
||||||
(defmacro mu4e-view-mode--prepare ()
|
(defmacro mu4e-view-mode--prepare ()
|
||||||
`(lambda () (visual-line-mode 1)))
|
`(lambda () (visual-line-mode 1)))
|
||||||
:gfhook ('mu4e-view-mode-hook (mu4e-view-mode--prepare))
|
:gfhook ('mu4e-view-mode-hook (mu4e-view-mode--prepare))
|
||||||
|
Loading…
Reference in New Issue
Block a user