2023-06-10 21:55:06 -05:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
|
2024-05-02 22:32:59 -05:00
|
|
|
setopt re_match_pcre
|
|
|
|
|
2023-06-10 21:55:06 -05:00
|
|
|
# path aliases
|
|
|
|
hash -d dl=/data/data/com.termux/files/home/storage/downloads
|
|
|
|
|
|
|
|
# command aliases
|
|
|
|
alias vim='nvim'
|
|
|
|
alias zenvim='nvim ~/writing +TZAtaraxis -c "lua require('"'"'telescope'"'"').setup { defaults = { layout_strategy = '"'"'vertical'"'"', layout_config = { vertical = { preview_cutoff = 10 }}}}"'
|
2023-06-10 22:02:17 -05:00
|
|
|
|
|
|
|
# path additions
|
2023-09-08 22:17:22 -05:00
|
|
|
export PATH=/data/data/com.termux/files/home/go/bin:/data/data/com.termux/files/home/.cargo/bin:$PATH
|