Set up aerc accounts
This commit is contained in:
parent
d7064ca62c
commit
55fe810aef
|
@ -0,0 +1,18 @@
|
||||||
|
[Personal]
|
||||||
|
source = imaps://trevor%40tsvallender.co.uk@mail.tsvallender.co.uk
|
||||||
|
outgoing = smtps+plain://trevor%40tsvallender.co.uk@mail.tsvallender.co.uk
|
||||||
|
default = INBOX
|
||||||
|
from = Trevor Vallender <trevor@tsvallender.co.uk>
|
||||||
|
copy-to = Sent
|
||||||
|
source-cred-cmd = bw get password 3138af18-75b2-4985-90ed-adfd00b18e95
|
||||||
|
outgoing-cred-cmd = bw get password 3138af18-75b2-4985-90ed-adfd00b18e95
|
||||||
|
|
||||||
|
[Foxsoft]
|
||||||
|
source = imaps://trevor%40foxsoft.co.uk@imap.gmail.com
|
||||||
|
outgoing = smtps+plain://trevor%40foxsoft.co.uk@smtp.gmail.com
|
||||||
|
default = INBOX
|
||||||
|
from = Trevor Vallender <trevor@foxsoft.co.uk>
|
||||||
|
copy-to = Sent
|
||||||
|
source-cred-cmd = bw get password bf0f7425-341e-4195-a17d-afca00b4dd86
|
||||||
|
outgoing-cred-cmd = bw get password bf0f7425-341e-4195-a17d-afca00b4dd86
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
[general]
|
[general]
|
||||||
default-save-path=~/downloads
|
default-save-path=~/downloads
|
||||||
|
unsafe-accounts-conf=true
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
mouse-enabled=true
|
mouse-enabled=true
|
||||||
|
@ -14,13 +15,13 @@ icon-invalid=⚠
|
||||||
|
|
||||||
threading-enabled=true
|
threading-enabled=true
|
||||||
|
|
||||||
|
|
||||||
[viewer]
|
[viewer]
|
||||||
pager=less -r
|
pager=nvim
|
||||||
|
alternatives=text/html,text/plain
|
||||||
|
|
||||||
[filters]
|
[filters]
|
||||||
text/plain=colorize
|
text/plain=colorize
|
||||||
text/calendar=calendar
|
text/calendar=calendar
|
||||||
message/delivery-status=colorize
|
message/delivery-status=colorize
|
||||||
message/rfc822=colorize
|
message/rfc822=colorize
|
||||||
text/html=w3m -T text/html
|
text/html=pandoc -f html -t markdown_strict-raw_html
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
awscli2
|
awscli2
|
||||||
awsebcli
|
awsebcli
|
||||||
bitwarden
|
bitwarden
|
||||||
|
bitwarden-cli
|
||||||
cachix
|
cachix
|
||||||
calibre
|
calibre
|
||||||
chromium
|
chromium
|
||||||
|
@ -44,6 +45,8 @@
|
||||||
libreoffice
|
libreoffice
|
||||||
lshw
|
lshw
|
||||||
nerdfonts
|
nerdfonts
|
||||||
|
pandoc
|
||||||
|
pspg
|
||||||
ripgrep
|
ripgrep
|
||||||
ruby_3_1
|
ruby_3_1
|
||||||
rubyPackages_3_1.dip
|
rubyPackages_3_1.dip
|
||||||
|
@ -94,6 +97,7 @@
|
||||||
home.file.".bash_profile".source = ./bash_profile;
|
home.file.".bash_profile".source = ./bash_profile;
|
||||||
home.file.".bashrc".source = ./bashrc;
|
home.file.".bashrc".source = ./bashrc;
|
||||||
home.file.".tmux.conf".source = ./tmux.conf;
|
home.file.".tmux.conf".source = ./tmux.conf;
|
||||||
|
home.file.".psqlrc".source = ./psqlrc;
|
||||||
home.file.".w3m/config".source = ./w3m/config;
|
home.file.".w3m/config".source = ./w3m/config;
|
||||||
xdg.configFile."git/config".source = ./git/config;
|
xdg.configFile."git/config".source = ./git/config;
|
||||||
xdg.configFile."git/config_foxsoft".source = ./git/config_foxsoft;
|
xdg.configFile."git/config_foxsoft".source = ./git/config_foxsoft;
|
||||||
|
@ -102,6 +106,7 @@
|
||||||
xdg.configFile."kitty/kitty.conf".source = ./kitty/kitty.conf;
|
xdg.configFile."kitty/kitty.conf".source = ./kitty/kitty.conf;
|
||||||
xdg.configFile."kitty/gruvbox_dark_soft.conf".source = ./kitty/gruvbox_dark_soft.conf;
|
xdg.configFile."kitty/gruvbox_dark_soft.conf".source = ./kitty/gruvbox_dark_soft.conf;
|
||||||
xdg.configFile."aerc/aerc.conf".source = ./aerc/aerc.conf;
|
xdg.configFile."aerc/aerc.conf".source = ./aerc/aerc.conf;
|
||||||
|
xdg.configFile."aerc/accounts.conf".source = ./aerc/accounts.conf;
|
||||||
home.file.".ssh/config".source = ./ssh/config;
|
home.file.".ssh/config".source = ./ssh/config;
|
||||||
home.file.".LESS_TERMCAP".source = ./LESS_TERMCAP;
|
home.file.".LESS_TERMCAP".source = ./LESS_TERMCAP;
|
||||||
services.syncthing.enable = true;
|
services.syncthing.enable = true;
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
\setenv PAGER 'pspg'
|
Loading…
Reference in New Issue