Directory based aliases
Define an .aliasfile
with the bash aliases for the directory.
alias foo='echo "foo"'
alias bar="echo 'bar'"
IMPORTANT: the file should only contain alias definitions, one per line.
Using antigen, antibody, or some other zsh plugin manager:
$ antigen bundle moondewio/dir_alias
$ antibody bundle moondewio/dir_alias >> ~/.zsh_plugins.sh
Or by clonning the repo and sourcing the file:
git clone https://github.com/moondewio/dir_alias.git
echo "source ~/path/to/dir_alias/dir_alias.plugin.zsh" > ~/.zshrc
Inspired on carlosV2/bash-aliases-per-directory.