mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
Carthage plugin
This commit is contained in:
parent
d646884add
commit
adec61db62
2 changed files with 46 additions and 0 deletions
27
plugins/carthage/README.md
Normal file
27
plugins/carthage/README.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# carthage plugin
|
||||||
|
|
||||||
|
The carthage plugin provides all [aliases](#aliases) .
|
||||||
|
|
||||||
|
To use it, add `carthage` to the plugins array in your zshrc file:
|
||||||
|
|
||||||
|
```zsh
|
||||||
|
plugins=(... carthage)
|
||||||
|
```
|
||||||
|
|
||||||
|
## Aliases
|
||||||
|
|
||||||
|
| Alias | Command |
|
||||||
|
|:---------------------|:---------------------------------------------------------------------------------------------------------------------------------|
|
||||||
|
| c | carthage |
|
||||||
|
| ca | carthage archive |
|
||||||
|
| cb | carthage build |
|
||||||
|
| cbs | carthage bootstrap |
|
||||||
|
| cck | carthage checkout |
|
||||||
|
| ccf | carthage copy-frameworks |
|
||||||
|
| cf | carthage fetch |
|
||||||
|
| ch | carthage help |
|
||||||
|
| cl | cat Cartfile |
|
||||||
|
| co | carthage outdated |
|
||||||
|
| cu | carthage update |
|
||||||
|
| cv | carthage validate |
|
||||||
|
| cver | carthage version |
|
19
plugins/carthage/carthage.plugin.zsh
Normal file
19
plugins/carthage/carthage.plugin.zsh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
#
|
||||||
|
# Aliases
|
||||||
|
# (sorted alphabetically)
|
||||||
|
#
|
||||||
|
|
||||||
|
alias c='carthage'
|
||||||
|
alias ca='carthage archive'
|
||||||
|
alias cb='carthage build'
|
||||||
|
alias cbs='carthage bootstrap'
|
||||||
|
alias cck='carthage checkout'
|
||||||
|
alias ccf='carthage copy-frameworks'
|
||||||
|
alias cf='carthage fetch'
|
||||||
|
alias ch='carthage help'
|
||||||
|
alias cl='cat Cartfile'
|
||||||
|
alias co='carthage outdated'
|
||||||
|
alias cu='carthage update'
|
||||||
|
alias cv= 'carthage validate'
|
||||||
|
alias cver='carthage version'
|
Loading…
Reference in a new issue