Files
TerminalPolyjuice/zsh/alias/helix_alias.sh
2026-02-01 22:02:25 +08:00

11 lines
393 B
Bash

if (( $+commands[helix] )); then
alias helix="helix -c $ZSH_POLYJUICE_HELIX_CONFIG_FILE"
alias hx="helix -c $ZSH_POLYJUICE_HELIX_CONFIG_FILE"
elif (( $+commands[hx] )); then
alias helix="hx -c $zsh_polyjuice_helix_config_file"
alias hx="hx -c $zsh_polyjuice_helix_config_file"
else
alias helix="echo HELIX is not installed"
alias hx="echo HELIX/HX is not installed"
fi