mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
28 lines
870 B
Bash
28 lines
870 B
Bash
# $DOTFILES/platforms/mac/zshrc
|
||
# Sourced by user's zshrc if is macOS 在用户的 zshrc 中被引用,macOS 特定配置
|
||
# Entry point in $DOTFILES/tools/zsh/common.zshrc (入口点)
|
||
|
||
# Homebrew Path
|
||
export PATH=/opt/homebrew/bin:/opt/homebrew/sbin:$PATH
|
||
|
||
# macOS #
|
||
|
||
alias xclip="pbcopy"
|
||
alias clip="pbcopy"
|
||
alias paste="pbpaste"
|
||
|
||
# >>> conda initialize >>>
|
||
# !! Contents within this block are managed by 'conda init' !!
|
||
__conda_setup="$('/opt/homebrew/Caskroom/miniconda/base/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
|
||
if [ $? -eq 0 ]; then
|
||
eval "$__conda_setup"
|
||
else
|
||
if [ -f "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh" ]; then
|
||
. "/opt/homebrew/Caskroom/miniconda/base/etc/profile.d/conda.sh"
|
||
else
|
||
export PATH="/opt/homebrew/Caskroom/miniconda/base/bin:$PATH"
|
||
fi
|
||
fi
|
||
unset __conda_setup
|
||
# <<< conda initialize <<<
|
||
|