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

refactor: Replace all shell command searching with Chezmoi searching

This commit is contained in:
Thomas A. Christensen II 2023-04-15 17:45:49 -05:00
parent f89211ef87
commit 433c576a44
Signed by: millironx
GPG key ID: 09335146883990B9

View file

@ -1,45 +1,38 @@
{{- if lookPath "pipx" }}
# Enable pipx completions # Enable pipx completions
if [ $(command -v pipx) ]; then eval "$(register-python-argcomplete pipx)"
eval "$(register-python-argcomplete pipx)" {{- end }}
fi
{{- if lookPath "nvim" }}
# Preferred editor for local and remote sessions # Preferred editor for local and remote sessions
if [ $(command -v nvim) ]; then export EDITOR=nvim
export EDITOR=nvim {{- end }}
elif [ $(command -v nano) ]; then
export EDITOR=nano
elif [ $(command -v vim) ]; then
export EDITOR=vim
elif [ $(command -v emacs) ]; then
export EDITOR='emacs -nw'
fi
if [ $(command -v kate) ]; then {{- if lookPath "kate" }}
export VISUAL=kate export VISUAL=kate
elif [ $(command -v code) ]; then {{- else if lookPath "codium" }}
export VISUAL=code export VISUAL=codium
elif [ $(command -v emacs) ]; then {{- else if lookPath "code" }}
export VISUAL=emacs export VISUAL=code
fi {{- end }}
{{- if lookPath "most" }}
# Set a cool new pager with color support # Set a cool new pager with color support
if [ $(command -v most) ]; then export PAGER=most
export PAGER=most {{- end }}
fi
{{- if or (lookPath "bat") (lookPath "catbat") }}
# Replace cat with bat # Replace cat with bat
if [ $(command -v bat) ]; then export BAT_PAGER="less -SRF"
export BAT_PAGER="less -SRF" 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" {{- end }}
fi
# Add notification support for long-running processes # Add notification support for long-running processes
if [ $(command -v ntfy) ]; then {{- if lookPath "ntfy" }}
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 glances" 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 {{- end }}
# Set the Nextflow enviroment caches # Set the Nextflow enviroment caches
export NXF_HOME="$HOME/.nextflow" export NXF_HOME="$HOME/.nextflow"