Setting up aerc
This commit is contained in:
parent
7b4cc1a5fe
commit
246d321137
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
[general]
|
||||||
|
default-save-path=~/downloads
|
||||||
|
|
||||||
|
[ui]
|
||||||
|
mouse-enabled=true
|
||||||
|
|
||||||
|
icon-unencrypted=
|
||||||
|
icon-encrypted=✔
|
||||||
|
icon-signed=✔
|
||||||
|
icon-signed-encrypted=✔
|
||||||
|
icon-unknown=✘
|
||||||
|
icon-invalid=⚠
|
||||||
|
|
||||||
|
threading-enabled=true
|
||||||
|
|
||||||
|
|
||||||
|
[viewer]
|
||||||
|
pager=less -r
|
||||||
|
|
||||||
|
[filters]
|
||||||
|
text/plain=colorize
|
||||||
|
text/calendar=calendar
|
||||||
|
message/delivery-status=colorize
|
||||||
|
message/rfc822=colorize
|
||||||
|
text/html=w3m -T text/html
|
|
@ -16,6 +16,7 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
_1password-gui
|
_1password-gui
|
||||||
aaxtomp3
|
aaxtomp3
|
||||||
|
aerc
|
||||||
anki
|
anki
|
||||||
audible-cli
|
audible-cli
|
||||||
awscli2
|
awscli2
|
||||||
|
@ -36,6 +37,7 @@
|
||||||
gimp
|
gimp
|
||||||
heroku
|
heroku
|
||||||
htop
|
htop
|
||||||
|
imagemagick
|
||||||
kde-gruvbox
|
kde-gruvbox
|
||||||
kitty
|
kitty
|
||||||
kitty-themes
|
kitty-themes
|
||||||
|
@ -51,6 +53,7 @@
|
||||||
termpdfpy
|
termpdfpy
|
||||||
thunderbird
|
thunderbird
|
||||||
timg
|
timg
|
||||||
|
w3m
|
||||||
wine
|
wine
|
||||||
winetricks
|
winetricks
|
||||||
zoom-us
|
zoom-us
|
||||||
|
@ -89,12 +92,14 @@
|
||||||
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.".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;
|
||||||
xdg.configFile."nvim/init.lua".source = ./nvim/init.lua;
|
xdg.configFile."nvim/init.lua".source = ./nvim/init.lua;
|
||||||
xdg.configFile."nvim/lua/tsv/remap.lua".source = ./nvim/lua/tsv/remap.lua;
|
xdg.configFile."nvim/lua/tsv/remap.lua".source = ./nvim/lua/tsv/remap.lua;
|
||||||
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;
|
||||||
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,2 @@
|
||||||
|
inline_img_protocol 4
|
||||||
|
auto_image TRUE
|
Loading…
Reference in New Issue