1
0
Fork 0
mirror of https://github.com/MillironX/dotfiles.git synced 2024-11-14 19:03:09 +00:00
dotfiles/dot_envvar.tmpl

68 lines
1.8 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
2023-03-02 18:07:00 +00:00
if [ $(command -v nvim) ]; then
export EDITOR=nvim
elif [ $(command -v nano) ]; then
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'
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 -SRF"
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)"
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"
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
export SINGULARITY_CACHEDIR=/90daydata/shared/$USER/.singularity
2021-10-12 21:54:31 +00:00
{{ end }}
# 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 }}'