mirror of https://github.com/ohmyzsh/ohmyzsh.git
Compare commits
3 Commits
e609df37f5
...
7c4cb1b494
Author | SHA1 | Date |
---|---|---|
|
7c4cb1b494 | |
|
7a3695aadf | |
|
e18e72c859 |
plugins
|
@ -5,6 +5,7 @@ files=(
|
|||
/etc/grc.zsh # default
|
||||
/usr/local/etc/grc.zsh # homebrew darwin-x64
|
||||
/opt/homebrew/etc/grc.zsh # homebrew darwin-arm64
|
||||
/home/linuxbrew/.linuxbrew/etc/grc.zsh # linuxbrew
|
||||
/usr/share/grc/grc.zsh # Gentoo Linux (app-misc/grc)
|
||||
)
|
||||
|
||||
|
|
|
@ -33,6 +33,9 @@ plugins=(... terraform)
|
|||
| `tfs` | `terraform state` |
|
||||
| `tft` | `terraform test` |
|
||||
| `tfsh` | `terraform show` |
|
||||
| `tfw` | `terraform workspace` |
|
||||
| `tfwl` | `terraform workspace list` |
|
||||
| `tfws` | `terraform workspace select` |
|
||||
|
||||
|
||||
## Prompt function
|
||||
|
|
|
@ -31,3 +31,6 @@ alias tfv='terraform validate'
|
|||
alias tfs='terraform state'
|
||||
alias tft='terraform test'
|
||||
alias tfsh='terraform show'
|
||||
alias tfw='terraform workspace'
|
||||
alias tfwl='terraform workspace list'
|
||||
alias tfws='terraform workspace select'
|
||||
|
|
Loading…
Reference in New Issue