Last active
August 8, 2022 16:14
-
-
Save edgarv09/9e987f8f955974f1fe1ce70f7af8194a to your computer and use it in GitHub Desktop.
my zsh script
This file contains 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
# Color formatting | |
PROMPT="%F{14}%n%f@:%F{11}%1d%f$ " | |
alias ls='ls -GFh' | |
alias la_haus="cd <APP>" | |
alias l='ls -lah' | |
alias lh_wp="<APP>/webpack-dev-server" | |
alias lh_db="docker-compose -f docker-compose.yml up -d" | |
alias rubo="rubocop --safe-auto-correct" | |
export GPG_TTY=$(tty) | |
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 | |
export PATH="/opt/homebrew/opt/[email protected]/bin:$PATH" | |
export LDFLAGS="-L/opt/homebrew/opt/[email protected]/lib" | |
export CPPFLAGS="-I/opt/homebrew/opt/[email protected]/include" | |
export PKG_CONFIG_PATH="/opt/homebrew/opt/[email protected]/lib/pkgconfig" | |
export RUBY_CONFIGURE_OPTS="--with-openssl-dir=/opt/homebrew/opt/[email protected]" | |
export GEM_HOME="$HOME/.gem" | |
export FORTAWESOME_TOKEN="9379CAD1-C622-4C47-AC99-D68A141F7A3C" | |
export NPM_ACCESS_TOKEN="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" | |
. /opt/homebrew/opt/asdf/libexec/asdf.sh | |
export ARCHFLAGS="-arch arm64" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment