Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save adamgogogo/e34ee42407b8f36eb932391c0a2f8d5f to your computer and use it in GitHub Desktop.
Save adamgogogo/e34ee42407b8f36eb932391c0a2f8d5f to your computer and use it in GitHub Desktop.

Install Zsh and Oh-my-zsh on CentOS 7

Based on this article

ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does

This script can be copy paste to ssh as is. No hands installation. :-)

yum install zsh -y
chsh -s /bin/zsh root
echo $SHELL
yum install wget git -y
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh

/bin/cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
source ~/.zshrc

@adamgogogo
Copy link
Author

`
autoload -Uz vcs_info
precmd() { vcs_info }

zstyle ':vcs_info:git:*' formats '%b '

setopt PROMPT_SUBST
PROMPT='%F{green}%*%f %F{cyan}%~%f %F{red}${vcs_info_msg_0_}%f$ '
`

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