-
-
Save ratacibernetica/bb6ccbe30e83f44359fad47c91b20fde to your computer and use it in GitHub Desktop.
zsh install memo on CentOS6 (with zsh-autosuggestions)
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
# | |
echo installing zsh | |
sudo yum -y install zsh | |
#update possibly needed in centos | |
#yum update -y nss curl libcurl | |
#install oh-my-zsh | |
#git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh | |
#cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc | |
#change login shell | |
#chsh -s zsh | |
#source ~/.zshrc | |
#install autosuggestions for zsh | |
#git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
#manually add 'zsh-autosuggestions' to the list of plugins for Oh My Zsh | |
#vim ~/.zshrc | |
#logout and login OR source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment