This plugin for Oh-My-Zsh (zsh) adds completion and useful aliases for NomicLabs Buidler tool buidler.dev
Clone this repository https://github.com/gonzalobellino/buidler-zsh.git in $ZSH_CUSTOM/plugins (default: ~/.oh-my-zsh/custom/plugins)
Download this file buidler-zsh.plugin.zsh and move it to a new directory $ZSH_CUSTOM/plugins/buidler-zsh
$ZSH_CUSTOM (default:~/.oh-my-zsh/custom)
├── plugins
└── buidler-zsh
└── buidler-zsh.plugin.zsh
To activate it, add buidler-zsh to the plugins array of your .zshrc file:
plugins=(... buidler-zsh)
You need to reload ZSH (source .zshrc) or logout from the active terminal.
| Alias | Command |
|---|---|
| buid | npx --no-install buidler |
| buidc | npx --no-install buidler compile |
| buidt | npx --no-install buidler test |
| buidr | npx --no-install buidler run |
| buidn | npx --no-install buidler node |
| buidh | npx --no-install buidler help |