12 lines
307 B
Bash
12 lines
307 B
Bash
#!/usr/bin/env zsh
|
|
|
|
setopt re_match_pcre
|
|
|
|
# path aliases
|
|
hash -d dl=/data/data/com.termux/files/home/storage/downloads
|
|
|
|
# command aliases
|
|
alias hxx='hx -c ~/.config/helix/config-md.toml'
|
|
|
|
# path additions
|
|
export PATH=/data/data/com.termux/files/home/go/bin:/data/data/com.termux/files/home/.cargo/bin:$PATH
|