Last active
January 13, 2022 22:05
-
-
Save maxiwoj/81a9bbaf9f0db33b95870d1719240db7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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