Install on Debian

sudo apt-get install zsh
sudo apt-get install git-core
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Change zsh theme

edit the .zshrc on ~/ and change ZSH_THEME
nano ~/.zshrc

Install syntax highlight

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
nano ~/.zshrc

And append "plugins" with "zsh-autosuggestions". You can configure highlight syntax with "ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=red,bg=white,bold,underline" at the end of the same file.

Allow End & Start keys

nano ~/.zshrc

And add this at the end:

bindkey  "^[[H"   beginning-of-line
bindkey  "^[[F"   end-of-line
bindkey  "^[[3~"  delete-char