_
__| | _____ __ ___ _ ____ __
/ _` |/ _ \ \ / / / _ \ '_ \ \ / /
| (_| | __/\ V / | __/ | | \ V /
\__,_|\___| \_/ \___|_| |_|\_/
Android Basic
-
Install Termux (https://termux.com/)
-
Install code editor
$ 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