diff options
author | luxagraf <sng@luxagraf.net> | 2021-10-01 20:13:13 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-10-01 20:13:13 -0400 |
commit | 48cc6cecb880712e66108d6d9f0f93a04a323a09 (patch) | |
tree | acc70bd666445e2580b3e2e296367882f46bc111 /.mutt | |
parent | bf34a8a8492c0839a866d2b1739989cfc412e144 (diff) |
updated dotfiles to latest in sway setup
Diffstat (limited to '.mutt')
-rw-r--r-- | .mutt/muttrc | 12 | ||||
-rw-r--r-- | .mutt/offlineimap.py | 2 | ||||
-rw-r--r-- | .mutt/personal | 2 |
3 files changed, 9 insertions, 7 deletions
diff --git a/.mutt/muttrc b/.mutt/muttrc index cf8cbc5..23b7153 100644 --- a/.mutt/muttrc +++ b/.mutt/muttrc @@ -1,5 +1,5 @@ # Paths ---------------------------------------------- -set folder = ~/mail # mailbox location +set folder = ~/.mail # mailbox location #set alias_file = ~/.mutt/alias # where to store aliases set header_cache = ~/.mutt/cache/headers # where to store headers set message_cachedir = ~/.mutt/cache/bodies # where to store bodies @@ -63,8 +63,8 @@ bind index <space> collapse-thread macro index \Cr "T~U<enter><tag-prefix><clear-flag>N<untag-pattern>.<enter>" "mark all messages as read" # Sync email -macro index O "<shell-escape>offlineimap<enter>" "run offlineimap to sync all mail" -macro index i "<shell-escape>offlineimap -qf INBOX<enter>" "run offlineimap to sync inbox" +macro index O "<shell-escape>mbsync personal<enter>" "run mbsync to sync all mail" +macro index o "<shell-escape>mbsync personal:INBOX<enter>" "run mbsync to sync inbox" # Saner copy/move dialogs # macro index C "<copy-message>?<toggle-mailboxes>" "copy a message to a mailbox" @@ -144,7 +144,7 @@ bind index p recall-message set query_command = "abook --mutt-query '%s'" bind editor <Tab> complete-query bind editor ^T complete -set editor="nvim -c 'set spell spelllang=en'" +set editor="vim -c 'set spell spelllang=en'" source ~/.mutt/mutt-colors-solarized-dark-16.muttrc #undo limit searches @@ -157,8 +157,8 @@ macro index <F9> "<enter-command>unset wait_key<enter><pipe-message>notmuch-mutt #macro generic,index,pager \ca "<shell-escape>abook<return>" "launch abook" macro index,pager A "<pipe-message>abook --add-email<return>" "add the sender address to abook" -set spoolfile = "+personal/INBOX" +set spoolfile = "+INBOX" source ~/.mutt/personal -folder-hook personal/* source ~/.mutt/personal +#folder-hook personal/* source ~/.mutt/personal #folder-hook wired/* source ~/.mutt/work diff --git a/.mutt/offlineimap.py b/.mutt/offlineimap.py index f84b6bc..a885aef 100644 --- a/.mutt/offlineimap.py +++ b/.mutt/offlineimap.py @@ -3,3 +3,5 @@ from subprocess import check_output def get_password(account): return check_output("pass " + account, shell=True).splitlines()[0] + + diff --git a/.mutt/personal b/.mutt/personal index 748b1bf..d349c2b 100644 --- a/.mutt/personal +++ b/.mutt/personal @@ -1,5 +1,5 @@ set from = "sng@luxagraf.net" -set folder = ~/mail/personal +set folder = ~/.mail set sendmail = "/usr/bin/msmtp -a personal" set sendmail_wait = 0 set trash = "+Trash" |