1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-30 09:40:09 +00:00
ohmyzsh/plugins/packer
冯不游 8d1bd7cc22 feat(packer): add packer plugin
add some alias
2023-02-22 20:00:18 +08:00
..
README.md feat(packer): add packer plugin 2023-02-22 20:00:18 +08:00
terraform.plugin.zsh feat(packer): add packer plugin 2023-02-22 20:00:18 +08:00

Packer plugin

Plugin for Packer, a tool from Hashicorp for managing docker safely and efficiently. It adds aliases for packer

To use it, add packer to the plugins array of your ~/.zshrc file:

plugins=(... packer)

Requirements

Aliases

Alias Command
pkr packer
pkri packer init .
pkrf packer fmt . -recursive
pkrv packer validate .
pkrb packer build .
pkrall packer init . && packer fmt . -recursive && packer validate . && packer build .