Vagrant/config/zshrc

13 lines
291 B
Bash
Raw Normal View History

export ZSH=~/.oh-my-zsh
2018-11-20 09:14:42 +00:00
ZSH_THEME="ehlxr2"
2020-12-12 14:09:21 +00:00
plugins=(git wd sudo zsh-syntax-highlighting zsh-autosuggestions extract history-substring-search docker docker-compose)
source $ZSH/oh-my-zsh.sh
2020-12-12 14:09:21 +00:00
# source ~/.bash_profile
alias di='docker images'
alias dp='docker ps -a'
alias ds='docker stats'