Skip to content

Instantly share code, notes, and snippets.

@felix-kyun
Created August 4, 2023 16:49
Show Gist options
  • Save felix-kyun/3e6b3a85d3f2e78c33e158bfc61b4ae1 to your computer and use it in GitHub Desktop.
Save felix-kyun/3e6b3a85d3f2e78c33e158bfc61b4ae1 to your computer and use it in GitHub Desktop.
fast zsh setup with omz and p10k and some plugins

💻 Fast Copy Paste Command To Setup

install zsh git and wget/curl

zsh git curl 

install omz

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

install zsh-autosuggestions & zsh-syntax-highlighting

git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

edit .zshrc and append zsh-autosuggestions zsh-syntax-highlighting to plugins array

install p10k

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k

change ZSH_THEME to powerlevel10k/powerlevel10k in .zshrc

enjoy ☕

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment