Differences

This shows you the differences between two versions of the page.

Link to this comparison view

zsh [2014/12/19 10:21]
zsh [2014/12/19 10:21] (current)
Line 1: Line 1:
 +====== #!/bin/zsh ======
  
 +  * [[Terminal Shells]]
 +  * [[bash]]
 +  * [[csh]]
 +  * [[ksh]]
 +  * [[sh]]
 +  * [[tcsh]]
 +
 +== Update environment variables ==
 +
 +If you are running remote commands (git, for example), and you need access to files in ''/​usr/​local'',​ you'll need to update your PATH environment variable:
 +
 +''​.zshenv''​
 +
 +<​code>​
 +PATH="​${PATH}:/​usr/​local/​bin"​
 +</​code>​
 +
 +== oh-my-zsh ==
 +
 +Download and install:
 +
 +<​code>​
 +git clone git://​github.com/​robbyrussell/​oh-my-zsh.git ~/​.oh-my-zsh
 +cp ~/​.oh-my-zsh/​templates/​zshrc.zsh-template ~/.zshrc
 +</​code>​