diff --git a/plugins/carthage/README.md b/plugins/carthage/README.md new file mode 100644 index 000000000..28bb62f25 --- /dev/null +++ b/plugins/carthage/README.md @@ -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 | \ No newline at end of file diff --git a/plugins/carthage/carthage.plugin.zsh b/plugins/carthage/carthage.plugin.zsh new file mode 100644 index 000000000..26a3fa6e6 --- /dev/null +++ b/plugins/carthage/carthage.plugin.zsh @@ -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' \ No newline at end of file