Add docker commands from user install
This commit is contained in:
parent
6d645999f2
commit
dd0d06fa1d
2 changed files with 6 additions and 0 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
# Add custom docker completion to fpath
|
||||||
|
FPATH="$HOME/.docker/completions:$FPATH"
|
||||||
|
|
||||||
# Load all stock functions (from $fpath files) called below.
|
# Load all stock functions (from $fpath files) called below.
|
||||||
autoload -U compaudit compinit
|
autoload -U compaudit compinit
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -95,6 +95,9 @@ if (( ${+commands[brew]} )); then
|
||||||
test -d $(brew --prefix)/opt/curl && export PATH="$(brew --prefix)/opt/curl/bin:$PATH"
|
test -d $(brew --prefix)/opt/curl && export PATH="$(brew --prefix)/opt/curl/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Local Docker if set up that way
|
||||||
|
test -d $HOME/.docker/bin && export PATH="$HOME/.docker/bin:$PATH"
|
||||||
|
|
||||||
# Rainfrog config
|
# Rainfrog config
|
||||||
export RAINFROG_CONFIG=~/.config/rainfrog
|
export RAINFROG_CONFIG=~/.config/rainfrog
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue