sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
nano ~/.config/terminator/config[global_config]
tab_position = bottom
title_inactive_bg_color = "#888a85"
title_inactive_fg_color = "#ffffff"
title_transmit_bg_color = "#000000"
[keybindings]
[layouts]
[[default]]
[[[child1]]]
parent = window0
profile = default
type = Terminal
[[[window0]]]
parent = ""
type = Window
[plugins]
[profiles]
[[default]]
background_color = "#20112e"
background_darkness = 0.85
background_type = transparent
cursor_color = "#aaaaaa"
foreground_color = "#ffffff"
sudo apt-get install zshchsh -s $(which zsh)Restart your terminal. Choose option 2 for Z Shell configuration.
Don't forget to migrate your previous configurations (RVM, Rbenv...) from.bashrcto.zshrc
Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the command-line with either curl or wget.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"sudo apt-get install powerline fonts-powerlinegit clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9ksudo apt-get install zsh-syntax-highlightingPowerLevel9k accepts lots of fonts, but Nerds are the most complete set with lots of glyphs! Get whatever font you like, but on the video above I picked Hack from Nerd Fonts
Install them with GNOME Fonts App, that basically moves them on $HOME/.local/share/fonts
Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins)
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestionsAdd the plugin to the list of plugins for Oh My Zsh to load (inside ~/.zshrc):
plugins=(zsh-autosuggestions)git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/installZSH_THEME="powerlevel9k/powerlevel9k"
POWERLEVEL9K_TIME_FORMAT="%D{%d-%m-%y %H:%M:%S}"
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon context dir vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(time)
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX="↱"
POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="↳ > "
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh