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

50 lines
1.3 KiB
Cheetah
Raw Normal View History

# Enable pipx completions
if [ $(command -v pipx) ]; then
eval "$(register-python-argcomplete pipx)"
fi
# Preferred editor for local and remote sessions
if [ $(command -v nano) ]; then
export EDITOR=nano
elif [ $(command -v emacs) ]; then
export EDITOR='emacs -nw'
elif [ $(command -v vim) ]; then
export EDITOR=vim
fi
if [ $(command -v kate) ]; then
export VISUAL=kate
elif [ $(command -v code) ]; then
export VISUAL=code
elif [ $(command -v emacs) ]; then
export VISUAL=emacs
fi
# Set a cool new pager with color support
2021-09-01 17:27:15 +00:00
if [ $(command -v most) ]; then
export PAGER=most
fi
# Replace cat with bat
2021-09-01 17:27:15 +00:00
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
2021-09-01 17:27:15 +00:00
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
# Set the Nextflow enviroment caches
export NXF_HOME="$HOME/.nextflow"
export NXF_CONDA_CACHEDIR="$NXF_HOME/conda"
export NXF_SINGULARITY_CACHEDIR="$NXF_HOME/singularity"
export NXF_CHARLIECLOUD_CACHEDIR="$NXF_HOME/charlie"
# Give Julia full CPU access
export JULIA_NUM_THREADS=$(nproc)