-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gtiflow-cjs can now be used as an antigen plugin
- Loading branch information
Showing
3 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This allows the gitflow-avh commands to be installed in ZSH using antigen. | ||
# Antigen is a bundle manager. It allows you to enhance the functionality of | ||
# your zsh session by installing bundles and themes easily. | ||
|
||
# Antigen documentation: | ||
# http://antigen.sharats.me/ | ||
# https://github.com/zsh-users/antigen | ||
|
||
# Install gitflow-avh with antigen: | ||
# antigen bundle CJ-Systems/gitflow-cjs --branch=master | ||
# Bundles installed by antigen are available for use immediately. | ||
|
||
# Update gitflow-avh (and all other antigen bundles): | ||
# antigen update | ||
|
||
# The antigen command will download the git repository to a folder and then | ||
# execute an enabling script (this file). The complete process for loading the | ||
# code is documented here: | ||
# https://github.com/zsh-users/antigen#notes-on-writing-plugins | ||
|
||
# This specific script just adds the project folder to the PATH. This makes all | ||
# commands available in git. | ||
export PATH="${PATH}":`dirname "${0}"` |