Install ZSH shell on Ubuntu « Soham's Blog

April 21, 2011

Setup ZSH as your default terminal with oh-my-zsh

  • Install ZSH

     

    sudo apt-get update && sudo apt-get install zsh

    You can download ZSH tutorial from here

  • Setup oh-my-zsh

     

    wget –no-check-certificate https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O – | sh

  • Make ZSH default

     

    chsh -s /bin/zsh

  • Restart your system.

Note*
If you are a rails developer and using RVM, make sure you have added the following line at the end of your .zshrc file.

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . “$HOME/.rvm/scripts/rvm”

相关文章:

  • 2021-09-02
  • 2021-09-16
  • 2022-01-17
  • 2022-02-01
  • 2021-09-24
  • 2022-12-23
  • 2021-05-12
  • 2021-04-14
猜你喜欢
  • 2021-09-27
  • 2021-05-28
  • 2021-08-10
  • 2021-05-27
  • 2021-07-16
  • 2022-02-02
  • 2021-09-14
相关资源
相似解决方案