Last active
March 2, 2021 15:30
-
-
Save jjercx/f137ca7c3751e1d729b046040c510504 to your computer and use it in GitHub Desktop.
ZSH Config 2021-01-14
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
# alias | |
alias ip="ipconfig getifaddr en0" | |
alias mac="ifconfig en1 | awk '/ether/{print $2}'" | |
# nvm | |
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
# Android for React Native | |
export ANDROID_HOME=$HOME/Library/Android/sdk | |
export PATH=$PATH:$ANDROID_HOME/emulator | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/tools/bin | |
export PATH=$PATH:$ANDROID_HOME/platform-tools | |
# rbenv | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
# sets the tab title to current dir | |
# also needs changes in iTerm UI | |
# https://gist.github.com/phette23/5270658 | |
DISABLE_AUTO_TITLE="true" | |
precmd() { | |
echo -ne "\e]1;${PWD##*/}\a" | |
} | |
# ZSH config | |
export ZSH="/Users/juanjoseramirez/.oh-my-zsh" | |
ZSH_THEME="robbyrussell" | |
plugins=( | |
git | |
colored-man-pages colorize pip python brew osx | |
bundler dotenv osx rake rbenv ruby | |
) | |
source $ZSH/oh-my-zsh.sh | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# Set Spaceship ZSH as a prompt | |
autoload -U promptinit; promptinit | |
prompt spaceship |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment