mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-30 10:58:14 +00:00
10 lines
262 B
Bash
10 lines
262 B
Bash
# 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
|