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.
Mobile Env Setup

⭐ Setup Mobile Development Environnement ⭐

Install HomeBrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Install ZSH :

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

Install Git

brew install git

Install Sublime Text :

brew install --cask sublime-text

Configure Aliases in .zshrc

  1. Sample .zshrc
  2. Run this :
open -a Sublime\ Text /Users/$(whoami)/.zshrc
  1. Add Git+Gitflow Aliases
  2. Add CocoaPods/Ruby/Fastlane Aliases

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

Install Fork

brew install --cask fork

Install iTerm :

brew install --cask iterm2

Install PowerLvl Template + Zsh Plugins

## Install Power10k :
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
### change them in .zshrc  : ZSH_THEME="powerlevel10k/powerlevel10k"

## Install Auto-Suggestion :
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
### Edit .zshrc & add in plugins array : plugins=(zsh-autosuggestions)

## Install Syntaxe Hylight :
brew install zsh-syntax-highlighting
## Copy/Paste in .zshrc before rvm Config : source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh >> /Users/$(whoami)/.zshrc

## Install Completion : 
brew install zsh-completions
### Edit .zshrc & add in plugins : plugins=(zsh-autosuggestions)

Install Ruby :

## 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

Install CocoaPods :

gemi cocoapods

Install Android Studio :

brew install --cask android-studio

Install Flutter :

brew install --cask flutter

Your good to go !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment