commit 6b6391b473196b8f8d9cab7fab9d603aedb198cd (patch)
parent 93aa4c7617136ece8000f47c6babacc67c991be2
Author: Alex Karle <alex@alexkarle.com>
Date: Sun, 23 May 2021 00:26:17 -0400
mutt: Fix common-lib of muttrc; $from set before $bcc
The common-lib refactor worked great.. until I sent an email and
realized that the common config actually depends on the account setup!
So this patch reverses the lines so that $from, etc can be accessed in
the common config.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc
@@ -1,4 +1,4 @@
# Source common config and local config
# common should *not* source local to enable multiple muttrc's to coexist
-source ~/.config/mutt/common.muttrc
source ~/.config/mutt/muttrc.local
+source ~/.config/mutt/common.muttrc