From dd0d06fa1d294ca5a7d90d909f6c70bdcb4390a8 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 28 Feb 2026 21:11:11 +0000 Subject: [PATCH 1/2] Add docker commands from user install --- zsh/plugins/compinit.plugin.zsh | 3 +++ zshrc.zsh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/zsh/plugins/compinit.plugin.zsh b/zsh/plugins/compinit.plugin.zsh index 8775fca..e886874 100644 --- a/zsh/plugins/compinit.plugin.zsh +++ b/zsh/plugins/compinit.plugin.zsh @@ -1,5 +1,8 @@ #!/usr/bin/env zsh +# Add custom docker completion to fpath +FPATH="$HOME/.docker/completions:$FPATH" + # Load all stock functions (from $fpath files) called below. autoload -U compaudit compinit diff --git a/zshrc.zsh b/zshrc.zsh index 3237f82..d0836fc 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -95,6 +95,9 @@ if (( ${+commands[brew]} )); then test -d $(brew --prefix)/opt/curl && export PATH="$(brew --prefix)/opt/curl/bin:$PATH" fi +# Local Docker if set up that way +test -d $HOME/.docker/bin && export PATH="$HOME/.docker/bin:$PATH" + # Rainfrog config export RAINFROG_CONFIG=~/.config/rainfrog From c8ea7cc820da73712ec61962556a96a6a81830f0 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 28 Feb 2026 21:13:48 +0000 Subject: [PATCH 2/2] Add Obsidian CLI --- zshrc.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index d0836fc..8e41cd9 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -59,6 +59,9 @@ if (( ${+commands[brew]} )); then export PATH="$(brew --prefix)/opt/grep/libexec/gnubin:$PATH" fi +# Add Obsidian CLI +export PATH="$PATH:/Applications/Obsidian.app/Contents/MacOS" + # Add Totara Docker helper functions export PATH="$PATH:$HOME/git/totara-docker-dev/bin"