diff options
author | Alan Pearce | 2016-07-15 09:19:20 +0200 |
---|---|---|
committer | Alan Pearce | 2016-07-15 09:25:05 +0200 |
commit | 4d832b9e85bc291cb82e0675fd121799aa639e16 (patch) | |
tree | 127208d3c6ffb47bb63fbf0bfe99a0eee315282b /tag-zsh/config/zsh/zshrc | |
parent | 7d1dff7136362abe33f9ff6f80efa431013e9c26 (diff) | |
download | nixfiles-4d832b9e85bc291cb82e0675fd121799aa639e16.tar.lz nixfiles-4d832b9e85bc291cb82e0675fd121799aa639e16.tar.zst nixfiles-4d832b9e85bc291cb82e0675fd121799aa639e16.zip |
zsh: Install Jira plugin
Diffstat (limited to 'tag-zsh/config/zsh/zshrc')
-rw-r--r-- | tag-zsh/config/zsh/zshrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc index 6cb21c94..33ebe665 100644 --- a/tag-zsh/config/zsh/zshrc +++ b/tag-zsh/config/zsh/zshrc @@ -9,6 +9,10 @@ zplug "clvv/fasd", hook-build:"PREFIX=$HOME make install" zplug "alanpearce/zsh-directory-history", at:"dirlog-as-zsh-function", as:command, use:"dirhist" zplug "alanpearce/zsh-directory-history", at:"dirlog-as-zsh-function", as:plugin zplug "caarlos0/zsh-open-pr", as:plugin +if [[ ${(SN)HOST%spotcap} ]] +then + zplug "gerges/oh-my-zsh-jira-plus", as:plugin +fi WORDCHARS=${${WORDCHARS//[-.]}//[\/]} @@ -97,6 +101,11 @@ then PURE_GIT_PULL=0 fi +if zplug check gerges/oh-my-zsh-jira-plus +then + JIRA_RAPID_BOARD=true +fi + # Then, source plugins and add commands to $PATH zplug load |