diff options
author | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-05-08 17:14:38 +0100 |
---|---|---|
committer | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-05-08 17:14:38 +0100 |
commit | 0321f6093fd532a131a694ce8810d5c59b245ed7 (patch) | |
tree | 825ac7d9cd8b41a82fd94ad684b06a81db72e31a | |
parent | debdd175d5891fd0564ab31e31d4a8e673005e87 (diff) |
some updates
-rw-r--r-- | bashrc | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -119,12 +119,9 @@ tjclip () { echo "$1: $(xclip -o -selection clipboard)." | _tj } -# GPG agent settings (https://github.com/hammerheadlemon/YubiKey-Guide) -# See Replace Agents section - -export GPG_TTY="$(tty)" -#export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) -#gpgconf --launch gpg-agent +# GPG +# added this for mutt (https://openports.se/mail/mutt) +export GPG_TTY=$(tty); eval $(gpg-agent --daemon) # FZF export FZF_DEFAULT_COMMAND='ag -g ""' @@ -136,4 +133,5 @@ export FZF_DEFAULT_OPTS='--color info:108,prompt:109,spinner:108,pointer:168,mar [ -f ~/.fzf.bash ] && source ~/.fzf.bash export EDITOR=/usr/local/bin/vim +export PARINIT="rTbgqR B=.,?_A_a Q=_s>|" # for the filtering program par (check man par) source ~/perl5/perlbrew/etc/bashrc |