Skip to content

Instantly share code, notes, and snippets.

@tisto
Last active February 17, 2021 08:31
Show Gist options
  • Save tisto/f5e60332f2f8e52541e818a0db89e185 to your computer and use it in GitHub Desktop.
Save tisto/f5e60332f2f8e52541e818a0db89e185 to your computer and use it in GitHub Desktop.
brew list
```
gdbm libmagic openssl@1.1 readline tcl-tk
jpeg libssh2 pkg-config rust xz
libffi openjdk@11 python@3.8 sqlite zlib
```
cat .zchrc:
````
# nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# timo yarn
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
export PATH="/opt/homebrew/opt/python@3.8/bin:$PATH"
export PATH="/opt/homebrew/opt/openjdk@11/bin:$PATH"
# libffi
export LDFLAGS="-L/opt/homebrew/opt/libffi/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libffi/include"
# zlib
export LDFLAGS="-L/opt/homebrew/opt/zlib/lib"
export CPPFLAGS="-I/opt/homebrew/opt/zlib/include"
````
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment