Skip to content

Instantly share code, notes, and snippets.

@jeffersonsouza
Forked from ThePredators/readme-mde.md
Created March 25, 2021 14:03
Show Gist options
  • Save jeffersonsouza/8e8485ddf5ff1b91ba20b2b13aa0462f to your computer and use it in GitHub Desktop.
Save jeffersonsouza/8e8485ddf5ff1b91ba20b2b13aa0462f to your computer and use it in GitHub Desktop.

Revisions

  1. @ThePredators ThePredators revised this gist Mar 24, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -123,7 +123,7 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    brew install --cask genymotion
    ```
    Usefull ClI :
    - [genyshell]((https://docs.genymotion.com/desktop/latest/05_Genymotion_Shell.html#starting-genymotion-shell)
    - [genyshell](https://docs.genymotion.com/desktop/latest/05_Genymotion_Shell.html#starting-genymotion-shell)
    - [gmtool](https://docs.genymotion.com/desktop/latest/06_GMTool.html#general-commands)
    ```
    ## Copy this to .zshrc
  2. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 16 additions and 1 deletion.
    17 changes: 16 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -119,10 +119,25 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    - [SDKManager](https://developer.android.com/studio/command-line/sdkmanager)

    ## Install Android Emulator [GenyMotion Recomended](https://www.genymotion.com/)

    ```
    brew install --cask genymotion
    ```
    Usefull ClI :
    - [genyshell]((https://docs.genymotion.com/desktop/latest/05_Genymotion_Shell.html#starting-genymotion-shell)
    - [gmtool](https://docs.genymotion.com/desktop/latest/06_GMTool.html#general-commands)
    ```
    ## Copy this to .zshrc
    echo 'GMTOOL_PATH="/Applications/Genymotion.app/Contents/MacOS/"' >> /Users/$(whoami)/.zshrc
    echo 'export PATH=$GMTOOL_PATH:$PATH' >> /Users/$(whoami)/.zshrc
    ## Display devices list
    genyshell -c "devices list"
    ## To Create / run u need licence !
    ## Create a device
    gmtool admin create "Google Pixel - 9.0 - API 28 - 1080x1920" GP_9
    ## Run a device
    gmtool admin run GP_9
    ```

    ## Install [Flutter](https://flutter.dev/docs/get-started/install)
    ```sh
  3. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -136,7 +136,7 @@ brew install dart
    flutter doctor
    ```

    ## Install VsCode
    ## Install [VsCode](https://code.visualstudio.com/)
    ```
    brew install --cask visual-studio-code
    ```
  4. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -136,4 +136,9 @@ brew install dart
    flutter doctor
    ```

    ## Install VsCode
    ```
    brew install --cask visual-studio-code
    ```

    Your good to go !
  5. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -130,7 +130,7 @@ brew install --cask genymotion
    brew install --cask flutter
    # Instal dart
    brew install dart
    ## Add null safety (Only inside a project)
    ## Migrate to null safety (Only inside a project)
    # dart migrate --apply-changes
    ## Check That everythong is OK
    flutter doctor
  6. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -90,6 +90,11 @@ gemi cocoapods
    - [Check This tool to download any XCode version](https://github.com/vineetchoudhary/Downloader-for-Apple-Developers)
    - [Troubleshooting](https://wilsonmar.github.io/xcode/#XcodeInstall)

    To Open iOS Simulator run :
    ```
    open -a Simulator
    ```

    ## Install Android (Android Studio + SDK + Java)
    ```sh
    brew tap adoptopenjdk/openjdk
  7. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -113,7 +113,7 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    ```
    - [SDKManager](https://developer.android.com/studio/command-line/sdkmanager)

    ## Install Android Emulator [GenyMotion Recommanded](https://www.genymotion.com/)
    ## Install Android Emulator [GenyMotion Recomended](https://www.genymotion.com/)

    ```
    brew install --cask genymotion
  8. @ThePredators ThePredators revised this gist Mar 21, 2021. 1 changed file with 7 additions and 1 deletion.
    8 changes: 7 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -113,14 +113,20 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    ```
    - [SDKManager](https://developer.android.com/studio/command-line/sdkmanager)

    ## Install Android Emulator [GenyMotion Recommanded](https://www.genymotion.com/)

    ```
    brew install --cask genymotion
    ```

    ## Install [Flutter](https://flutter.dev/docs/get-started/install)
    ```sh
    ## Install Flutter
    brew install --cask flutter
    # Instal dart
    brew install dart
    ## Add null safety (Only inside a project)
    dart migrate --apply-changes
    # dart migrate --apply-changes
    ## Check That everythong is OK
    flutter doctor
    ```
  9. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -119,7 +119,7 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    brew install --cask flutter
    # Instal dart
    brew install dart
    ## Add null safety dart
    ## Add null safety (Only inside a project)
    dart migrate --apply-changes
    ## Check That everythong is OK
    flutter doctor
  10. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -117,6 +117,10 @@ sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    ```sh
    ## Install Flutter
    brew install --cask flutter
    # Instal dart
    brew install dart
    ## Add null safety dart
    dart migrate --apply-changes
    ## Check That everythong is OK
    flutter doctor
    ```
  11. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 2 additions and 6 deletions.
    8 changes: 2 additions & 6 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -108,13 +108,9 @@ export PATH=$ANDROID_HOME/tools:$PATH
    export PATH=$ANDROID_HOME/platform-tools:$PATH
    export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH

    ## Update Android SDK (Deprecated)
    # sudo android update sdk --no-ui --filter platform-tools,tools
    ## You can run update all by using : sudo android update sdk --no-ui --all

    sdkmanager "platform-tools" "platforms;android-28"
    ## Install Android SDK 29 + Build Tool 28.0.3
    sdkmanager "platform-tools" "platforms;android-29" "build-tools;28.0.3"
    ```
    - Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !
    - [SDKManager](https://developer.android.com/studio/command-line/sdkmanager)

    ## Install [Flutter](https://flutter.dev/docs/get-started/install)
  12. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -114,7 +114,8 @@ export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH

    sdkmanager "platform-tools" "platforms;android-28"
    ```
    Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !
    - Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !
    - [SDKManager](https://developer.android.com/studio/command-line/sdkmanager)

    ## Install [Flutter](https://flutter.dev/docs/get-started/install)
    ```sh
  13. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -95,6 +95,8 @@ gemi cocoapods
    brew tap adoptopenjdk/openjdk
    brew install --cask adoptopenjdk8

    echo $"\nexport JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/\n" >> /Users/$(whoami)/.zshrc

    brew install --cask android-studio
    brew install gradle
    brew install android-sdk
    @@ -107,7 +109,7 @@ export PATH=$ANDROID_HOME/platform-tools:$PATH
    export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH

    ## Update Android SDK (Deprecated)
    sudo android update sdk --no-ui --filter platform-tools,tools
    # sudo android update sdk --no-ui --filter platform-tools,tools
    ## You can run update all by using : sudo android update sdk --no-ui --all

    sdkmanager "platform-tools" "platforms;android-28"
  14. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 4 additions and 1 deletion.
    5 changes: 4 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -90,8 +90,11 @@ gemi cocoapods
    - [Check This tool to download any XCode version](https://github.com/vineetchoudhary/Downloader-for-Apple-Developers)
    - [Troubleshooting](https://wilsonmar.github.io/xcode/#XcodeInstall)

    ## Install Android (Android Studio + SDK)
    ## Install Android (Android Studio + SDK + Java)
    ```sh
    brew tap adoptopenjdk/openjdk
    brew install --cask adoptopenjdk8

    brew install --cask android-studio
    brew install gradle
    brew install android-sdk
  15. @ThePredators ThePredators revised this gist Mar 6, 2021. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -103,9 +103,11 @@ export PATH=$ANDROID_HOME/tools:$PATH
    export PATH=$ANDROID_HOME/platform-tools:$PATH
    export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH

    ## Update Android SDK
    ## Update Android SDK (Deprecated)
    sudo android update sdk --no-ui --filter platform-tools,tools
    ## You can run update all by using : sudo android update sdk --no-ui --all

    sdkmanager "platform-tools" "platforms;android-28"
    ```
    Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !

  16. @ThePredators ThePredators revised this gist Mar 4, 2021. 1 changed file with 11 additions and 11 deletions.
    22 changes: 11 additions & 11 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    # ⭐ Setup Mobile Development Environment ⭐

    ## Install HomeBrew
    ## Install [HomeBrew](https://brew.sh/)
    ```sh
    ## Install xcode utils
    xcode-select --install
    @@ -11,17 +11,17 @@ brew doctor
    ## To update HomeBrew
    brew update
    ```
    ## Install ZSH :
    ## Install [ZSH](https://ohmyz.sh/)
    ```sh
    sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
    ```

    ## Install Git
    ## Install [Git](https://git-scm.com/downloads)
    ```sh
    brew install git
    ```

    ## Install Sublime Text :
    ## Install [Sublime Text](https://www.sublimetext.com/)
    ```sh
    brew install --cask sublime-text
    ```
    @@ -38,12 +38,12 @@ open -a Sublime\ Text /Users/$(whoami)/.zshrc

    ⚠️⚠️ Every Time you edit .zshrc you need to open a new Tab of Terminal/iTerm ⚠️⚠️

    ## Install Fork
    ## Install [Fork](https://git-fork.com/)
    ```sh
    brew install --cask fork
    ```

    ## Install iTerm :
    ## Install [iTerm](https://iterm2.com/)
    ```sh
    brew install --cask iterm2
    ```
    @@ -70,7 +70,7 @@ brew install zsh-completions

    ```

    ## Install Ruby :
    ## Install Ruby
    ```sh
    ## Install rvm
    curl -L https://get.rvm.io | bash -s stable
    @@ -81,16 +81,16 @@ rvm install ruby-2.6.5
    ```
    [For More Detail check this](https://gist.github.com/ThePredators/63548e82749418aa805885c1ec87b97f)

    ## Install CocoaPods :
    ## Install [CocoaPods](https://guides.cocoapods.org/using/getting-started.html) :
    ```sh
    gemi cocoapods
    ```

    ## Install XCode :
    ## Install XCode
    - [Check This tool to download any XCode version](https://github.com/vineetchoudhary/Downloader-for-Apple-Developers)
    - [Troubleshooting](https://wilsonmar.github.io/xcode/#XcodeInstall)

    ## Install Android (Android Studio + SDK) :
    ## Install Android (Android Studio + SDK)
    ```sh
    brew install --cask android-studio
    brew install gradle
    @@ -109,7 +109,7 @@ sudo android update sdk --no-ui --filter platform-tools,tools
    ```
    Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !

    ## Install Flutter :
    ## Install [Flutter](https://flutter.dev/docs/get-started/install)
    ```sh
    ## Install Flutter
    brew install --cask flutter
  17. @ThePredators ThePredators revised this gist Mar 4, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    # ⭐ Setup Mobile Development Environement
    # ⭐ Setup Mobile Development Environment

    ## Install HomeBrew
    ```sh
  18. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -86,6 +86,10 @@ rvm install ruby-2.6.5
    gemi cocoapods
    ```

    ## Install XCode :
    - [Check This tool to download any XCode version](https://github.com/vineetchoudhary/Downloader-for-Apple-Developers)
    - [Troubleshooting](https://wilsonmar.github.io/xcode/#XcodeInstall)

    ## Install Android (Android Studio + SDK) :
    ```sh
    brew install --cask android-studio
  19. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    # ⭐ Setup Mobile Development Environnement
    # ⭐ Setup Mobile Development Environement

    ## Install HomeBrew
    ```sh
  20. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 7 additions and 0 deletions.
    7 changes: 7 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -2,9 +2,14 @@

    ## Install HomeBrew
    ```sh
    ## Install xcode utils
    xcode-select --install
    ## Install Brew
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    ## Check that everything is Ok
    brew doctor
    ## To update HomeBrew
    brew update
    ```
    ## Install ZSH :
    ```sh
    @@ -102,7 +107,9 @@ Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-

    ## Install Flutter :
    ```sh
    ## Install Flutter
    brew install --cask flutter
    ## Check That everythong is OK
    flutter doctor
    ```

  21. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -4,6 +4,7 @@
    ```sh
    xcode-select --install
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    brew doctor
    ```
    ## Install ZSH :
    ```sh
    @@ -102,6 +103,7 @@ Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-
    ## Install Flutter :
    ```sh
    brew install --cask flutter
    flutter doctor
    ```

    Your good to go !
  22. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 5 additions and 1 deletion.
    6 changes: 5 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -85,15 +85,19 @@ gemi cocoapods
    brew install --cask android-studio
    brew install gradle
    brew install android-sdk
    android update sdk --no-ui

    export GRADLE_HOME=/usr/local/opt/gradle
    export ANDROID_HOME=/usr/local/opt/android-sdk
    export PATH=$GRADLE_HOME/bin:$PATH
    export PATH=$ANDROID_HOME/tools:$PATH
    export PATH=$ANDROID_HOME/platform-tools:$PATH
    export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH

    ## Update Android SDK
    sudo android update sdk --no-ui --filter platform-tools,tools
    ## You can run update all by using : sudo android update sdk --no-ui --all
    ```
    Thanks to [CodePath](https://guides.codepath.com/android/installing-android-sdk-tools) for there greate contribution !

    ## Install Flutter :
    ```sh
  23. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -2,6 +2,7 @@

    ## Install HomeBrew
    ```sh
    xcode-select --install
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    ```
    ## Install ZSH :
  24. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 11 additions and 1 deletion.
    12 changes: 11 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -79,9 +79,19 @@ rvm install ruby-2.6.5
    gemi cocoapods
    ```

    ## Install Android Studio :
    ## Install Android (Android Studio + SDK) :
    ```sh
    brew install --cask android-studio
    brew install gradle
    brew install android-sdk
    android update sdk --no-ui

    export GRADLE_HOME=/usr/local/opt/gradle
    export ANDROID_HOME=/usr/local/opt/android-sdk
    export PATH=$GRADLE_HOME/bin:$PATH
    export PATH=$ANDROID_HOME/tools:$PATH
    export PATH=$ANDROID_HOME/platform-tools:$PATH
    export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH
    ```

    ## Install Flutter :
  25. @ThePredators ThePredators revised this gist Feb 26, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@ brew install --cask sublime-text
    ```

    ## Configure Aliases in .zshrc
    0. Sample [.zshrc](https://gist.github.com/ThePredators/d7afc7ae411bc65ca5848c6a54d458f2)
    [Check this sample of my .zshrc](https://gist.github.com/ThePredators/d7afc7ae411bc65ca5848c6a54d458f2)
    1. Run this :
    ```sh
    open -a Sublime\ Text /Users/$(whoami)/.zshrc
  26. @ThePredators ThePredators revised this gist Feb 25, 2021. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -27,6 +27,7 @@ open -a Sublime\ Text /Users/$(whoami)/.zshrc
    ```
    2. Add [Git+Gitflow Aliases](https://gist.github.com/ThePredators/78b4427ed928c1508edf65664b080dcf)
    3. Add [CocoaPods/Ruby/Fastlane Aliases](https://gist.github.com/ThePredators/e81dc3364b77781d69cdebe163c500ec)
    4. Add [Flutter Aliases](https://gist.github.com/ThePredators/6a28dec5794d374d96088f8a5065cfc4)

    ⚠️⚠️ Every Time you edit .zshrc you need to open a new Tab of Terminal/iTerm ⚠️⚠️

  27. @ThePredators ThePredators revised this gist Feb 25, 2021. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -83,4 +83,9 @@ gemi cocoapods
    brew install --cask android-studio
    ```

    ## Install Flutter :
    ```sh
    brew install --cask flutter
    ```

    Your good to go !
  28. @ThePredators ThePredators revised this gist Feb 25, 2021. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -25,8 +25,8 @@ brew install --cask sublime-text
    ```sh
    open -a Sublime\ Text /Users/$(whoami)/.zshrc
    ```
    2. Add this : https://gist.github.com/ThePredators/78b4427ed928c1508edf65664b080dcf
    3. Add this : https://gist.github.com/ThePredators/e81dc3364b77781d69cdebe163c500ec
    2. Add [Git+Gitflow Aliases](https://gist.github.com/ThePredators/78b4427ed928c1508edf65664b080dcf)
    3. Add [CocoaPods/Ruby/Fastlane Aliases](https://gist.github.com/ThePredators/e81dc3364b77781d69cdebe163c500ec)

    ⚠️⚠️ Every Time you edit .zshrc you need to open a new Tab of Terminal/iTerm ⚠️⚠️

  29. @ThePredators ThePredators revised this gist Feb 25, 2021. 1 changed file with 9 additions and 1 deletion.
    10 changes: 9 additions & 1 deletion readme.md
    Original file line number Diff line number Diff line change
    @@ -63,7 +63,15 @@ brew install zsh-completions
    ```

    ## Install Ruby :
    - https://gist.github.com/ThePredators/63548e82749418aa805885c1ec87b97f
    ```sh
    ## Install rvm
    curl -L https://get.rvm.io | bash -s stable
    ### Add this somewhere in .zshrc : source /Users/$(whoami)/.rvm/scripts/rvm

    ## Install Ruby
    rvm install ruby-2.6.5
    ```
    [For More Detail check this](https://gist.github.com/ThePredators/63548e82749418aa805885c1ec87b97f)

    ## Install CocoaPods :
    ```sh
  30. @ThePredators ThePredators revised this gist Feb 25, 2021. 1 changed file with 6 additions and 6 deletions.
    12 changes: 6 additions & 6 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,12 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/too
    brew install git
    ```

    ## Add aliases to .zshrc
    ## Install Sublime Text :
    ```sh
    brew install --cask sublime-text
    ```

    ## Configure Aliases in .zshrc
    0. Sample [.zshrc](https://gist.github.com/ThePredators/d7afc7ae411bc65ca5848c6a54d458f2)
    1. Run this :
    ```sh
    @@ -30,11 +35,6 @@ open -a Sublime\ Text /Users/$(whoami)/.zshrc
    brew install --cask fork
    ```

    ## Install Sublime Text :
    ```sh
    brew install --cask sublime-text
    ```

    ## Install iTerm :
    ```sh
    brew install --cask iterm2