1
0
mirror of https://github.com/akelge/zsh synced 2025-07-01 20:29:13 +00:00
Files
zsh/zsh.d/Darwin/50-darwin.zsh
2024-10-30 11:59:18 +01:00

23 lines
639 B
Bash

# Darwin/OSX
# Environment and aliases for OSX
# Setup brew
# We need it here to fix the PATH
# so we can setup pyenv and other stuff
#
if type /opt/homebrew/bin/brew > /dev/null; then
eval "$(/opt/homebrew/bin/brew shellenv)"
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
fi
export LSCOLORS="ExgxcxdxCxegedabagacad"
alias ls='ls -F -G'
alias ldd='otool -L'
# alias skill=killall
alias lsrebuild='/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user'
# vim: set ts=4 sw=4 tw=0 ft=zsh :