sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
- Using brew
brew install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Official Repository
- PowerlineFont Repository
- Menlo for powerline
- Customized
- Place to
~/.oh-my-zsh/custom/themes
- Place to
- Usign brew
brew install autojump
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
- Install Android Studio
- Install SDK in Android Studio
- You must know SDK Path (MY PATH:
/Workspace/Library/AndroidSDK
)
- You must know SDK Path (MY PATH:
- Add your
.bashrc
or.zshrc
export PATH=$PATH:/Workspace/Library/AndroidSDK/platform-tools
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
- Add
.bashrc
or.zshrc
export NVM_DIR="${XDG_CONFIG_HOME/:-$HOME/.}nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
- Install Node
# Check node versions
nvm ls-remote
# Install what you want version
nvm install 11.14.0
# Select for using node that install before line
nvm use 11.14.0
- Using NPM
npm install -g yarn
curl -o- -L https://yarnpkg.com/install.sh | bash