diff options
author | Alan Pearce | 2016-07-16 13:48:34 +0200 |
---|---|---|
committer | Alan Pearce | 2016-07-16 13:48:34 +0200 |
commit | 19c4f71cddd539283418e3fefcefc286e28a4026 (patch) | |
tree | f83996d22c8bfbdb8e769ab45783ab0e516801c9 /tag-zsh/config/zsh | |
parent | 71f71ef2c6bd56f8847f907be708327d660ef094 (diff) | |
parent | 2b2c9cf8c419be69dfa97bea4cc364ee99e9f006 (diff) | |
download | dotfiles-19c4f71cddd539283418e3fefcefc286e28a4026.tar.lz dotfiles-19c4f71cddd539283418e3fefcefc286e28a4026.tar.zst dotfiles-19c4f71cddd539283418e3fefcefc286e28a4026.zip |
Merge branch 'master' of git.alanpearce.uk:alan/dotfiles
Diffstat (limited to 'tag-zsh/config/zsh')
-rw-r--r-- | tag-zsh/config/zsh/zshrc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tag-zsh/config/zsh/zshrc b/tag-zsh/config/zsh/zshrc index 6cb21c9..9a57bcf 100644 --- a/tag-zsh/config/zsh/zshrc +++ b/tag-zsh/config/zsh/zshrc @@ -9,6 +9,15 @@ 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 +zplug "lukechilds/zsh-better-npm-completion", if:"[[ -n $commands[npm] ]]" +if [[ -n $commands[nix-env] ]] +then + zplug "spwhitt/nix-zsh-completions", as:plugin + fpath=($fpath $ZPLUG_REPOS/spwhitt/nix-zsh-completions) +fi + +zplug "gerges/oh-my-zsh-jira-plus", as:plugin, if:"[[ ${(SN)HOST%spotcap} ]]" +zplug "hlissner/zsh-autopair", nice:10 WORDCHARS=${${WORDCHARS//[-.]}//[\/]} @@ -97,6 +106,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 |