diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-12 00:31:53 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-12 00:31:53 -0500 |
commit | 7d1b2f9ae4bacd453401c2cca174a2a5f85fe0ad (patch) | |
tree | 6a1335fec484dcc231819368cf537ca90172add0 | |
parent | 45ddc078bfa5915ce308da745923bcd38f6b279d (diff) | |
download | configs-7d1b2f9ae4bacd453401c2cca174a2a5f85fe0ad.tar.gz configs-7d1b2f9ae4bacd453401c2cca174a2a5f85fe0ad.tar.xz configs-7d1b2f9ae4bacd453401c2cca174a2a5f85fe0ad.zip |
[emacs] disable signature, use motion state for magit-blame-mode
-rw-r--r-- | init.org | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -727,10 +727,11 @@ customizing it. evil-cross-lines t) ;; custom mode state mappings - (dolist (mspair '((ebdb-mode . emacs) - (term-mode . emacs) - (helpful-mode . motion) - (view-mode . motion))) + (dolist (mspair '((ebdb-mode . emacs) + (term-mode . emacs) + (helpful-mode . motion) + (magit-blame-mode . motion) + (view-mode . motion))) (evil-set-initial-state (car mspair) (cdr mspair))) ;; fix tab and indentation in src blocks inside org-mode buffer @@ -2250,19 +2251,16 @@ For when I /have to/ use GH. '((".*" (address "amin@aminb.org") (body "\nBest,\namin\n") - (signature-file "~/.signature-amin") (eval (setq amin--message-cite-say-hi t))) ("gnu.*" - (address "bandali@gnu.org") - (signature-file nil)) + (address "bandali@gnu.org")) ((header "subject" "ThankCRM") (to "webmasters-comment@gnu.org") (body "\nAdded to 2018supporters.html.\n\nMoving to campaigns.\n\n-amin\n") (eval (setq amin--message-cite-say-hi nil))) ("nnimap\\+uwaterloo:.*" (address "abandali@uwaterloo.ca") - (gcc "\"nnimap+uwaterloo:Sent Items\"") - (signature-file nil))))) + (gcc "\"nnimap+uwaterloo:Sent Items\""))))) (use-package gnus-topic :hook (gnus-group-mode . gnus-topic-mode)) |