Personal Setup

⚠️ This Repository is for me :D

Shell

Install Brew for Linux

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"

Install ZSH

  • Using brew
brew install zsh

Install Oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Customized

Theme - Agnoster

Plugin - Autojump

  • Usign brew
brew install autojump

Plugin - Autosuggestions

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

Add SSH key

Setup Tools and Libraries

Visual Studio Code

Android Studio

Add desktop icon

Setup ADB

  1. Install Android Studio
  2. Install SDK in Android Studio
    • You must know SDK Path (MY PATH: /Workspace/Library/AndroidSDK)
  3. Add your .bashrc or .zshrc
export PATH=$PATH:/Workspace/Library/AndroidSDK/platform-tools

Vala

Node

Install NVM

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

Install Yarn

  • Using NPM
npm install -g yarn
curl -o- -L https://yarnpkg.com/install.sh | bash