Last active
February 17, 2021 08:31
-
-
Save tisto/f5e60332f2f8e52541e818a0db89e185 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew list | |
``` | |
gdbm libmagic [email protected] readline tcl-tk | |
jpeg libssh2 pkg-config rust xz | |
libffi openjdk@11 [email protected] 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/[email protected]/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