1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-15 03:13:10 +00:00

Update dot_envvar

This commit is contained in:
Thomas A. Christensen II 2021-09-01 12:27:15 -05:00
parent cbf864e601
commit 56db205f7d

View file

@ -21,20 +21,20 @@ elif [ $(command -v emacs) ]; then
fi fi
# Set a cool new pager with color support # Set a cool new pager with color support
if [[ $(command -v most) ]]; then if [ $(command -v most) ]; then
export PAGER=most export PAGER=most
fi fi
# Replace cat with bat # Replace cat with bat
if [[ $(command -v bat) ]]; then if [ $(command -v bat) ]; then
export BAT_PAGER="less -RF" export BAT_PAGER="less -RF"
export MANPAGER="sh -c 'col -bx | bat -l man -p'" export MANPAGER="sh -c 'col -bx | bat -l man -p'"
export MANROFFOPT="-c" export MANROFFOPT="-c"
fi fi
# Add notification support for long-running processes # Add notification support for long-running processes
if [[ $(command -v ntfy) ]]; then if [ $(command -v ntfy) ]; then
eval "$(ntfy shell-integration --longer-than 30)" 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" export AUTO_NTFY_DONE_IGNORE="vim nano emacs kate zshconfig screen tmux ssh top htop less more most nethogs 'singularity shell' julia man"
fi fi