Skip to content
Jason Hempstead edited this page Aug 21, 2020 · 1 revision

zsh scripts

Zsh is a shell designed for interactive use

Automatic install/update:

bash -c "$(curl -LSs https://github.com/casjay-dotfiles/zsh/raw/master/install.sh)"

Manual install:
requires:
apt: apt install zsh
yum: yum install zsh
pacman: pacman -S zsh

mv -fv "$HOME/.config/zsh" "$HOME/.config/zsh.bak"
git clone https://github.com/casjay-dotfiles/zsh "$HOME/.config/zsh"
ln -sf "$HOME/.config/zsh/zshrc" "$HOME/.zshrc"
git_clone https://github.com/robbyrussell/oh-my-zsh $HOME/.local/share/oh-my-zsh
git_clone https://github.com/zsh-users/zsh-syntax-highlighting $HOME/.local/share/oh-my-zsh/custom/plugins/zsh-syntax-highlighting
git_clone https://github.com/bhilburn/powerlevel9k.git $HOME/.local/share/oh-my-zsh/custom/themes/powerlevel9k

zsh wiki | zsh site

Clone this wiki locally