From 56db205f7d1959966834eb89fb89976893172698 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Wed, 1 Sep 2021 12:27:15 -0500 Subject: [PATCH] Update dot_envvar --- dot_envvar | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dot_envvar b/dot_envvar index 43f58b7..ecb93c7 100644 --- a/dot_envvar +++ b/dot_envvar @@ -21,20 +21,20 @@ elif [ $(command -v emacs) ]; then fi # Set a cool new pager with color support -if [[ $(command -v most) ]]; then +if [ $(command -v most) ]; then export PAGER=most fi # Replace cat with bat -if [[ $(command -v bat) ]]; then +if [ $(command -v bat) ]; then export BAT_PAGER="less -RF" export MANPAGER="sh -c 'col -bx | bat -l man -p'" export MANROFFOPT="-c" fi # Add notification support for long-running processes -if [[ $(command -v ntfy) ]]; then +if [ $(command -v ntfy) ]; then eval "$(ntfy shell-integration --longer-than 30)" export AUTO_NTFY_DONE_IGNORE="vim nano emacs kate zshconfig screen tmux ssh top htop less more most nethogs 'singularity shell' julia man" fi