Files
dotfiles/zsh_func_d/darwin.zsh
Eduard Iten 70dd5613b2 Added editor aliases
Removed git alias, as I use ssh now on Darwin
2026-02-12 08:10:34 +01:00

8 lines
328 B
Bash

# Aliasses, die nur auf MacOS gebraucht werden.
if [[ "$OSTYPE" == "darwin"* ]]; then
# macOS spezifisch
alias nrf-env="export PATH='/opt/nordic/ncs/toolchains/322ac893fe/bin:\$PATH'"
# git alias ist nötig, da unter Sequoia sonst git http auf lokale server nicht mehr funktioniert
# alias git="/usr/bin/git"
fi