diff options
author | Alan Pearce | 2017-03-17 10:01:23 +0100 |
---|---|---|
committer | Alan Pearce | 2017-03-17 10:01:23 +0100 |
commit | 9fee193c12d92ab503f1ba334345f7e56c10f217 (patch) | |
tree | d6e1256f572f32848cd0ad0ac1bfa936069e38b6 /zsh/.config | |
parent | 397ce671bb028802d528faf8811101e08557e527 (diff) | |
download | nixfiles-9fee193c12d92ab503f1ba334345f7e56c10f217.tar.lz nixfiles-9fee193c12d92ab503f1ba334345f7e56c10f217.tar.zst nixfiles-9fee193c12d92ab503f1ba334345f7e56c10f217.zip |
Merge host-specific configuration to tags
Diffstat (limited to 'zsh/.config')
-rw-r--r-- | zsh/.config/zsh/.zshenv | 5 | ||||
-rw-r--r-- | zsh/.config/zsh/.zshrc | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/zsh/.config/zsh/.zshenv b/zsh/.config/zsh/.zshenv index f1cad02f..0be5a7a6 100644 --- a/zsh/.config/zsh/.zshenv +++ b/zsh/.config/zsh/.zshenv @@ -17,6 +17,11 @@ then export SSH_AUTH_SOCK=${XDG_RUNTIME_DIR:-/run/user/$UID}/ssh-agent fi + if [[ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]] + then + . $HOME/.nix-profile/etc/profile.d/nix.sh; + fi + case $OSTYPE in darwin*) os=darwin diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index f2102b34..8a9c8063 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -133,6 +133,12 @@ then eval $(ssh-agent) fi +if zplug check gerges/oh-my-zsh-jira-plus +then + JIRA_RAPID_BOARD=true + JIRA_URL=https://spotcap.atlassian.net +fi + # Then, source plugins and add commands to $PATH zplug load |