diff --git a/Makefile b/Makefile
index 535a308..f7ac0c8 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,11 @@ _bootstrap:
 
 bootstrap: _prepare dotfiles _bootstrap ## Bootstrap new machine
 
+termux: _prepare dotfiles termux ## Bootstrap new termux
+
+termux:
+	@./install -c config/termux.conf.yml
+
 dotfiles: ## Update dotfiles
 	@./install
 
diff --git a/README.md b/README.md
index 8c989e6..e8e017a 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,17 @@ Set up using dotbot:
 	# under macOS
 	make macos
 
+## Termux setup
+Install dependency first:
+
+	pkg install make python vim git
+
+then:
+
+	git clone git@github.com:einverne/dotfiles.git
+	cd dotfiles
+	make termux
+
 ## Overview
 
 - using [dotbot](https://github.com/anishathalye/dotbot/) to manage dotfiles, [read more](https://blog.einverne.info/post/2020/08/use-dotbot-dotfiles-management.html)
diff --git a/config/termux.conf.yml b/config/termux.conf.yml
new file mode 100644
index 0000000..82889f0
--- /dev/null
+++ b/config/termux.conf.yml
@@ -0,0 +1,19 @@
+- shell:
+  - description: Clone zinit
+    quiet: true
+    command: |
+      if cd ~/.zinit/bin;
+      then git pull;
+      else git clone https://github.com/zdharma-continuum/zinit.git ~/.zinit/bin; fi
+  - termux-setup-storage
+  - termux-reload-settings
+  - description: backup .termux
+    command: |
+      mv "$HOME/.termux" "$HOME/.termux.bak.$(date +%Y.%m.%d-%H:%M:%S)"
+  - description: install tools
+    command: |
+      pkg install -y libcurl wget curl openssh vim git zsh unrar unzip less tree htop tsu neofetch
+
+- link:
+    ~/.termux:
+      path: termux/.termux
\ No newline at end of file
diff --git a/termux/colors.properties b/termux/.termux/colors.properties
similarity index 100%
rename from termux/colors.properties
rename to termux/.termux/colors.properties
diff --git a/termux/font.ttf b/termux/.termux/font.ttf
similarity index 100%
rename from termux/font.ttf
rename to termux/.termux/font.ttf
diff --git a/termux/.termux/termux.properties b/termux/.termux/termux.properties
new file mode 100644
index 0000000..ec07312
--- /dev/null
+++ b/termux/.termux/termux.properties
@@ -0,0 +1 @@
+extra-keys = [['ESC','/','|','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
diff --git a/termux/setup.sh b/termux/setup.sh
index a87f5a2..37c068d 100644
--- a/termux/setup.sh
+++ b/termux/setup.sh
@@ -2,21 +2,18 @@
 
 echo -e "Installing dependencies ..."
 # https://github.com/4679/oh-my-termux
-pkg install -y libcurl wget curl openssh vim git zsh unrar unzip less tree htop
-pkg install -y tsu neofetch
+pkg install -y libcurl wget curl openssh vim git zsh unrar unzip less tree htop tsu neofetch
 echo -e "Successfully Installed"
 
 if [ -d "$HOME/.termux" ]; then
-    mv $HOME/.termux $HOME/.termux.bak
+    mv "$HOME/.termux" "$HOME/.termux.bak.$(date +%Y.%m.%d-%H:%M:%S)"
 fi
 
 if [ ! -d $HOME/.termux ]; then
     mkdir $HOME/.termux
 fi
 
-curl -fsLo $HOME/.termux/colors.properties --create-dirs https://github.com/einverne/dotfiles/raw/master/termux/colors.properties
-curl -fsLo $HOME/.termux/termux.properties --create-dirs https://github.com/einverne/dotfiles/raw/master/termux/termux.properties
-curl -fsLo $HOME/.termux/font.ttf --create-dirs https://github.com/einverne/dotfiles/raw/master/termux/font.ttf
+ln -s "$HOME/dotfiles/termux/.termux" "$HOME/.termux"
 
 git clone https://github.com/robbyrussell/oh-my-zsh $HOME/.oh-my-zsh --depth 1
 cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc
diff --git a/termux/termux.properties b/termux/termux.properties
deleted file mode 100644
index 60912e5..0000000
--- a/termux/termux.properties
+++ /dev/null
@@ -1 +0,0 @@
-extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]