install zsh ubuntu 14.04 LTS

What I did is…

open ubuntu software center and install “Shell with lots of features” (the first one on top when search by “zsh”)

then did this (alternate way to install zsh) and, got “don’t have to” message.

$ sudo apt-get update && sudo apt-get install zsh 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
zsh is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 21 not upgraded.

then went to “oh-my-zsh” and follow the guides

$ git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
$ cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
$ chsh -s /bin/zsh 

reopen terminal and then… restart Ubuntu and then.

$ subl ~/.zshrc

open and edit this file…

ZSH_THEME="robbyrussell"
plugins=(git)

into

ZSH_THEME="ys"
plugins=(git rbenv gem bundler)

find themes

$ cd ~/.oh-my-zsh/themes/
$ ls

https://github.com/robbyrussell/oh-my-zsh/wiki/themes

And I found those plugin names

$ cd ~/.oh-my-zsh/plugins
$ ls

https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins

And change font size little bigger… 16! (on Terminal “profile” menu) Yes, I did this today.

 
0
Kudos
 
0
Kudos

Now read this

Git Merge your next Change

Sometimes when you want to merge changes made in another branch (in some remote) to your master branch. (or any branch supposed to be working) When you trust and it works fine for sure, then it would be quite simple: git merge And also... Continue →