[zed] Add helper alias from shell-common

This commit is contained in:
2026-01-06 22:26:05 +00:00
parent 48e2592add
commit 9a24e8e853

View File

@@ -0,0 +1,9 @@
# Zed specific shell configuration
# Detect Zed installation in common locations
for zed_path in "$HOME/Applications/Zed.app" "/Applications/Zed.app"; do
if [ -d "$zed_path" ]; then
alias zed="$zed_path/Contents/MacOS/cli"
break
fi
done