Weiterentwicklung

This commit is contained in:
2026-02-10 14:24:47 +01:00
parent 769b6bc936
commit 7893e8546b
2 changed files with 40 additions and 0 deletions

7
zsh_func_d/darwin.zsh Normal file
View File

@@ -0,0 +1,7 @@
# 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 auf lokale server nicht mehr funktioniert
alias git="/usr/bin/git"
fi