Files
dotfiles/config/fish/conf.d/macos/00brew.fish
Uttarayan 5121977278 [feat] Init zoxide at runtime
Move brew and ports files to macos specific folders
2023-07-25 19:09:49 +05:30

15 lines
542 B
Fish

if [ (uname) = "Darwin" ]
set arch (arch)
if [ "$arch" = "i386" ]
# eval /usr/local/Caskroom/miniconda/base/bin/conda "shell.fish" "hook" $argv | source
/usr/local/bin/brew shellenv | source
export PATH="/usr/local/opt/llvm/bin:$PATH"
else
eval /opt/homebrew/Caskroom/miniconda/base/bin/conda "shell.fish" "hook" $argv | source
/opt/homebrew/bin/brew shellenv | source
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
end
export XDG_CONFIG_HOME="/Users/fs0c131y/.config"
end