Last active
August 19, 2020 18:24
-
-
Save sharkyak/43fd6707a40bf3f6d71d71fdfc159445 to your computer and use it in GitHub Desktop.
ohmyzsh
This file contains 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
apt update | |
apt upgrade | |
reboot | |
apt install zsh | |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
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-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k | |
Set ZSH_THEME="powerlevel10k/powerlevel10k" in ~/.zshrc | |
plugins=(git history zsh-autosuggestions zsh-syntax-highlighting) | |
source .zshrc | |
timedatectl set-timezone Asia/Yekaterinburg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment