Skip to content

Instantly share code, notes, and snippets.

@abner
Forked from tsabat/zsh.md
Last active August 29, 2015 13:57
Show Gist options
  • Save abner/9424552 to your computer and use it in GitHub Desktop.
Save abner/9424552 to your computer and use it in GitHub Desktop.

Prereq:

apt-get install zsh
apt-get install git-core

Getting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh

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

and then you change your shell to zsh

chsh -s `which zsh`

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”     

and then restart

sudo shutdown -r 0

This problem is explained in depth in this issue

Powerline theme https://github.com/jeremyFreeAgent/oh-my-zsh-powerline-theme.git

TMUX CheatSheet https://gist.github.com/MohamedAlaa/2961058

http://rra.etc.br/MyWorks/2013/09/16/tmux-um-multiplexador-de-terminais/

Pair Programming with Tmux http://philipsampaio.com.br/blog/2012/02/20/usando-tmux-e-vim-para-pair-programming-remoto

http://www.collectiveidea.com/blog/archives/2014/02/18/a-simple-pair-programming-setup-with-ssh-and-tmux/

Powerline https://powerline.readthedocs.org/en/latest/introduction.html

Powerline fonts https://github.com/gbuntu127/gfonts

Generating ssh keys https://help.github.com/articles/generating-ssh-keys

https://github.com/tmuxinator/tmuxinator

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