From 697e54ea1146e1d287768ca8f0e6731f45460b7c Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Thu, 9 Dec 2021 10:47:29 -0800 Subject: [PATCH] Set up aerc to do url scans - Add a 'u' bind in message view to fire urlscan - Set PAGER to "most -w" to auto-wrap lines --- .config/aerc/binds.conf | 2 ++ .zshrc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/aerc/binds.conf b/.config/aerc/binds.conf index 8fb1351..3de1271 100644 --- a/.config/aerc/binds.conf +++ b/.config/aerc/binds.conf @@ -72,6 +72,8 @@ H = :toggle-headers J = :next K = :prev +u = |urlscan + [compose] # Keybindings used when the embedded terminal is not selected in the compose # view diff --git a/.zshrc b/.zshrc index 7e8f637..49e2b6b 100644 --- a/.zshrc +++ b/.zshrc @@ -30,7 +30,7 @@ export QT_QPA_PLATFORMTHEME=qt5ct # most does not exist on every system I touch if [[ -a /usr/bin/most ]]; then - export PAGER=most + export PAGER="most -w" fi # Key binds