mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
Make Bash aliases available on zsh
If there is a custom .bash_aliases file, load it also
This commit is contained in:
parent
7fabc8bca4
commit
8948875268
1 changed files with 5 additions and 0 deletions
|
|
@ -82,3 +82,8 @@ source $ZSH/oh-my-zsh.sh
|
|||
# Example aliases
|
||||
# alias zshconfig="mate ~/.zshrc"
|
||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
|
||||
# inlcude bash aliases if any
|
||||
if [ -f ~/.bash_aliases ]; then
|
||||
. ~/.bash_aliases
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue