2021-08-25 01:36:50 +00:00
|
|
|
# Enable pipx completions
|
|
|
|
if [ $(command -v pipx) ]; then
|
|
|
|
eval "$(register-python-argcomplete pipx)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Preferred editor for local and remote sessions
|
2023-03-02 18:07:00 +00:00
|
|
|
if [ $(command -v nvim) ]; then
|
|
|
|
export EDITOR=nvim
|
|
|
|
elif [ $(command -v nano) ]; then
|
2021-08-25 01:36:50 +00:00
|
|
|
export EDITOR=nano
|
|
|
|
elif [ $(command -v vim) ]; then
|
|
|
|
export EDITOR=vim
|
2023-03-02 18:07:00 +00:00
|
|
|
elif [ $(command -v emacs) ]; then
|
|
|
|
export EDITOR='emacs -nw'
|
2021-08-25 01:36:50 +00:00
|
|
|
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
|
2021-08-25 01:36:50 +00:00
|
|
|
export PAGER=most
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Replace cat with bat
|
2021-09-01 17:27:15 +00:00
|
|
|
if [ $(command -v bat) ]; then
|
2021-12-15 16:15:48 +00:00
|
|
|
export BAT_PAGER="less -SRF"
|
2021-08-25 01:36:50 +00:00
|
|
|
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
|
2021-08-25 01:36:50 +00:00
|
|
|
eval "$(ntfy shell-integration --longer-than 30)"
|
2022-06-14 17:32:49 +00:00
|
|
|
export AUTO_NTFY_DONE_IGNORE="vim nano emacs kate zshconfig screen tmux ssh top htop less more most nethogs 'singularity shell' julia man glances"
|
2021-08-25 01:36:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Set the Nextflow enviroment caches
|
|
|
|
export NXF_HOME="$HOME/.nextflow"
|
2021-10-12 21:54:31 +00:00
|
|
|
{{ if (eq .cluster "scinet") }}
|
|
|
|
NXF_CACHE=/90daydata/shared/$USER/.nextflow
|
|
|
|
{{ else }}
|
|
|
|
NXF_CACHE=$NXF_HOME
|
|
|
|
{{ end }}
|
|
|
|
export NXF_CONDA_CACHEDIR="$NXF_CACHE/conda"
|
|
|
|
export NXF_SINGULARITY_CACHEDIR="$NXF_CACHE/singularity"
|
|
|
|
export NXF_CHARLIECLOUD_CACHEDIR="$NXF_CACHE/charlie"
|
|
|
|
|
|
|
|
{{ if (eq .cluster "scinet") }}
|
|
|
|
# Set the Singularity image cache
|
2021-11-17 18:45:06 +00:00
|
|
|
export SINGULARITY_CACHEDIR=/90daydata/shared/$USER/.singularity
|
2021-10-12 21:54:31 +00:00
|
|
|
{{ end }}
|
2021-08-25 20:31:11 +00:00
|
|
|
|
|
|
|
# Give Julia full CPU access
|
|
|
|
export JULIA_NUM_THREADS=$(nproc)
|
2021-10-12 22:02:27 +00:00
|
|
|
|
2022-11-19 21:57:55 +00:00
|
|
|
# Make Julia use preinstalled Git
|
|
|
|
JULIA_PKG_USE_CLI_GIT=true
|
|
|
|
|
2021-10-12 22:02:27 +00:00
|
|
|
# Make NCBI happy
|
|
|
|
export NCBI_API_KEY='{{ (bitwarden "item" "7d42eba0-c256-4d3b-8d0e-adbf016a08f8").login.password }}'
|