diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/aerc/aerc.conf | 20 | ||||
-rw-r--r-- | .config/mutt/muttrc | 4 |
2 files changed, 13 insertions, 11 deletions
diff --git a/.config/aerc/aerc.conf b/.config/aerc/aerc.conf index b956ef8..b000c04 100644 --- a/.config/aerc/aerc.conf +++ b/.config/aerc/aerc.conf @@ -169,7 +169,7 @@ mouse-enabled=true # expand the folders. # # Default: false -#dirlist-tree=false +dirlist-tree=true # If dirlist-tree is enabled, set level at which folders are collapsed by # default. Set to 0 to disable. @@ -207,7 +207,6 @@ mouse-enabled=true # #stylesets-dirs= stylesets-dirs=~/.config/aerc -styleset-name=dracula.conf # Uncomment to use box-drawing characters for vertical and horizontal borders. # @@ -219,13 +218,14 @@ styleset-name=dracula.conf # # Default: default #styleset-name=default +styleset-name=dracula.conf # Activates fuzzy search in commands and their arguments: the typed string is # searched in the command or option in any position, and need not be # consecutive characters in the command or option. # # Default: false -#fuzzy-complete=false +fuzzy-complete=true # How long to wait after the last input before auto-completion is triggered. # @@ -247,12 +247,12 @@ styleset-name=dracula.conf # Uncomment to use UTF-8 symbols to indicate PGP status of messages # # Default: ASCII -#icon-unencrypted= -#icon-encrypted=✔ -#icon-signed=✔ -#icon-signed-encrypted=✔ -#icon-unknown=✘ -#icon-invalid=⚠ +icon-unencrypted= +icon-encrypted=✔ +icon-signed=✔ +icon-signed-encrypted=✔ +icon-unknown=✘ +icon-invalid=⚠ # Reverses the order of the message list. By default, the message list is # ordered with the newest (highest UID) message on top. Reversing the order @@ -341,7 +341,7 @@ styleset-name=dracula.conf # pager which supports ANSI codes. # # Default: less -R -#pager=less -R +pager="less -R" # # If an email offers several versions (multipart), you can configure which diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc index 42fe78a..d0d1a1b 100644 --- a/.config/mutt/muttrc +++ b/.config/mutt/muttrc @@ -35,7 +35,9 @@ set crypt_opportunistic_encrypt = no set crypt_use_gpgme = yes set crypt_verify_sig = yes set pgp_use_gpg_agent = yes -set tmpdir = "$HOME/.cache/.mutt/tmp" +set tmpdir = "$XDG_CACHE_DIR/mutt/tmpdir" +set header_cache = "$XDG_CACHE_DIR/mutt/header_cache" +set message_cachedir = "$XDG_CACHE_DIR/mutt/message_cachedir" set charset = "utf-8" set sort = reverse-threads set sort_aux = last-date-received |