Skip to content

Instantly share code, notes, and snippets.

@thiagocordeiro
Last active October 8, 2019 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thiagocordeiro/6e1be55f925e4639570d7860daf69c0c to your computer and use it in GitHub Desktop.
Save thiagocordeiro/6e1be55f925e4639570d7860daf69c0c to your computer and use it in GitHub Desktop.
# Added zsh shell.
sudo apt-get install zsh -y
wget --no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
sudo chsh -s /bin/zsh vagrant && sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="af-magic"/g' ~/.zshrc && echo "alias ll=\"ls -lha\"" >> ~/.zshrc && zsh
# disable git when needed
git config --global oh-my-zsh.hide-status 1
# autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions && echo "source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc && source ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment