Spice up termux with beautiful themes and productivity plugins to make your life easier!
pkg install zsh git lsd vim
Install Oh-My-Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
echo "alias ls=lsd" >> ~/.zshrc
Install Termux-style
git clone https://github.com/adi1090x/termux-style && cd termux-style && ./install
termux-style
Important
Restart Termux
Install powerlevel10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Install ZSH-Autoupdate
git clone https://github.com/TamCore/autoupdate-oh-my-zsh-plugins $ZSH_CUSTOM/plugins/autoupdate
Install ZSH-Autocomplete
git clone https://github.com/marlonrichert/zsh-autocomplete ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autocomplete
Install ZSH-Autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Install ZSH-Syntax-Highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
vim $HOME/.zshrc
Note
Go to line 11 and comment out the existing theme. Then append the code below:
ZSH_THEME="powerlevel10k/powerlevel10k"
Note
Go to line 74 and comment out the existing plugins. Then append the code below:
plugins=(git autoupdate zsh-autocomplete zsh-autosuggestions zsh-syntax-highlighting)
Note
I
to write the file.
ESC
to leave interactive mode.
ZZ
to save and exit vim editor.
export UPDATE_ZSH_DAYS=1
source ~/.zshrc
Now setup PowerLevel10K to your liking.