Skip to content

Instantly share code, notes, and snippets.

@xcession
Last active April 20, 2020 17:40
Show Gist options
  • Save xcession/649c3b8c7e9fd8349ba2700d3b275146 to your computer and use it in GitHub Desktop.
Save xcession/649c3b8c7e9fd8349ba2700d3b275146 to your computer and use it in GitHub Desktop.
[dev env basic (android)] Android Basic Development Environment #coding #env #android

Android Basic Development Environment

     _                              
  __| | _____   __   ___ _ ____   __
 / _` |/ _ \ \ / /  / _ \ '_ \ \ / /
| (_| |  __/\ V /  |  __/ | | \ V / 
 \__,_|\___| \_/    \___|_| |_|\_/  
                       Android Basic
$ pkg install neovim
  • Install Git
$ pkg install git
  • Setting up Git
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
  • (Optional) Set default Git text editor
$ git config --global core.editor "nvim"
  • Generate the SSH key
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"

id_rsa.pub is located at ~/.ssh/

  • Install Tmux
$ pkg install tmux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment