diff options
author | Björn Guth <bjoern.guth@rwth-aachen.de> | 2018-02-21 15:48:23 +0100 |
---|---|---|
committer | Björn Guth <bjoern.guth@rwth-aachen.de> | 2018-02-21 15:48:23 +0100 |
commit | 3963488dba15a7fc2367892b16bee11ed944d2dd (patch) | |
tree | f70d79efe440d8ed4a8d630d3f5a8e3e98bcaf80 | |
parent | 6b72e911d8031e7bac2cfc26294c93c32d7c1c5e (diff) |
Untrack personal.muttrc
This commit untracks personal.muttrc and moves the import of
personal.muttrc to the last line of muttrc. I did this for several
reasons:
1. I moved the personal.muttrc import to have the possibility to
overwrite settings made in muttrc. This makes personalizing mutt
easier.
2. Since personal.muttrc is currently empty, but gets automatically
filled with the macros to switch between mail accounts, this will
always appear as a modified file in `git status`. Also when all mail
accounts get deleted via mutt-wizzard.sh, personal.muttrc gets
deleted and therefore might cause inconveniences this way.
3. This makes it virtually impossible to accidentally commit personal
mutt configurations, which would be pretty easy if personal.muttrc
stays part of this repo as a tracked file.
4. It makes the repo look and feel nicer.
-rw-r--r-- | muttrc | 3 | ||||
-rw-r--r-- | personal.muttrc | 8 |
2 files changed, 2 insertions, 9 deletions
@@ -4,7 +4,6 @@ bind index,pager i noop bind index,pager g noop bind index \Cf noop source etc/muttcol -source personal.muttrc source etc/aliases set sleep_time = 0 set sort = 'reverse-date' @@ -53,3 +52,5 @@ bind index,pager <F4> sidebar-page-down bind index,pager \Cp sidebar-prev-new bind index,pager \Cn sidebar-next-new bind index,pager B sidebar-toggle-visible + +source personal.muttrc diff --git a/personal.muttrc b/personal.muttrc deleted file mode 100644 index 67da34b..0000000 --- a/personal.muttrc +++ /dev/null @@ -1,8 +0,0 @@ -# vim: filetype=muttrc - -# This file is where the wizard will output -# information on which file to treat as default -# and shortcut bindings for jumping from account to account. - -# You can edit this manually if you know what you're doing. - |