Last active
October 20, 2023 08:24
-
-
Save vasylherman/91d097d078e3a32dc30a895adfbe8f02 to your computer and use it in GitHub Desktop.
oh-my-zsh
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
| # On MAC | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| brew install zsh | |
| # On Ubuntu | |
| sudo apt install zsh -y | |
| # install ohmyzsh and zsh-syntax-highlighting & zsh-autosuggestions & powerlevel10k plugins | |
| sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)" | |
| git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${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 --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k | |
| # now, activate plugins in ~/.zshrc See exapmple in comments below πππππ |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
plugins=( aws git zsh-syntax-highlighting zsh-autosuggestions )ZSH_THEME="powerlevel10k/powerlevel10k"