Skip to content

Instantly share code, notes, and snippets.

@maxiwoj
Last active January 13, 2022 22:05
Show Gist options
  • Save maxiwoj/81a9bbaf9f0db33b95870d1719240db7 to your computer and use it in GitHub Desktop.
Save maxiwoj/81a9bbaf9f0db33b95870d1719240db7 to your computer and use it in GitHub Desktop.
# in order to setup zsh on termux with some proper stuff
# pkg install wget
# wget <this_raw> ; chmod u+x termux-setup-script.sh ; termux-setup-script.sh
pkg install wget
pkg install htop
pkg install nano
apt install zsh
pkg install lftp
chsh -s zsh
pkg install wget
pkg install git
wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh
chmod u+x install.sh
./install.sh
git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-completions
termux-setup-storag
echo place the below into .zshrc
echo ZSH_THEME="sorin"
echo plugins=(git zsh-completions zsh-autosuggestions zsh-syntax-highlighting)
echo autoload -U compinit && compinit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment