From adec61db62a7f3ac55bf8ad9b7fb9faa227e4192 Mon Sep 17 00:00:00 2001 From: Nirmit Patel Date: Tue, 18 May 2021 21:43:41 +0530 Subject: [PATCH] Carthage plugin --- plugins/carthage/README.md | 27 +++++++++++++++++++++++++++ plugins/carthage/carthage.plugin.zsh | 19 +++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 plugins/carthage/README.md create mode 100644 plugins/carthage/carthage.plugin.zsh 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