From 6b6391b473196b8f8d9cab7fab9d603aedb198cd Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 23 May 2021 00:26:17 -0400 Subject: [PATCH] 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. --- .config/mutt/muttrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc index 2c45dce..58c768e 100644 --- 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 -- libgit2 0.28.4