This commit is contained in:
Michael Zhang 2020-05-06 21:34:07 -05:00
parent 2a3576e329
commit 2a2e1a2daf
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
3 changed files with 40 additions and 1 deletions

0
dot_config/aerc/.keep Normal file
View file

View file

@ -0,0 +1,39 @@
H = :prev-tab<Enter>
L = :next-tab<Enter>
[messages]
q = :quit<Enter>
j = :next<Enter>
k = :prev<Enter>
<PgDn> = :next -s 100%<Enter>
<PgUp> = :prev -s 100%<Enter>
<Enter> = :view<Enter>
a = :archive flat<Enter>
c = :compose<Enter>
f = :forward<Enter>
rr = :reply -q<Enter>
ra = :reply -aq<Enter>
[view]
q = :close<Enter>
a = :archive flat<Enter>
f = :forward<Enter>
rr = :reply -q<Enter>
ra = :reply -aq<Enter>
[compose]
[compose::editor]
$noinherit = true
[compose::review]
y = :send<Enter>
n = :abort<Enter>
q = :abort<Enter>
e = :edit<Enter>
a = :attach<space>
[terminal]
$noinherit = true

View file

@ -26,5 +26,5 @@ alias cm="chezmoi"
alias jrnl=" jrnl"
alias kill-gpg-agent="gpgconf --kill gpg-agent"
ced() { chezmoi edit $1 && chezmoi apply }
ced() { chezmoi edit $1 && chezmoi -v apply }
cpush() { chezmoi git add . -- -A && chezmoi git commit -- -m "update" && chezmoi git push }