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

start with Git

Steps to start Github.com open the terminal in a local directory, say git init as like ~/projects/first_repo $ git init (before this step, install “git” on your laptop) and then, say git remote add origin repo_url with the repo URL... Continue →