Skip to main content

Terminal Customizations:

Hyper Terminal

Install Hyper Terminal

  • Install from Package Manager

Add the hyperminimal plugin

To hide title bar in Hyper Terminal : Add "hyperminimal" to plugins in ~/.hyper.js

plugins: [
"hyperminimal"
],

zsh

Before starting, users may want to see what shell is currently being used:

echo $SHELL

Install the zsh package. For additional completion definitions, install the zsh-completions package as well.

Initial configuration

nyc Tutorial to configuire zsh fast

Make sure that Zsh has been installed correctly by running the following in a terminal:

zsh

Change Default Shell to zsh

sudo chsh -s /bin/zsh

Install Oh My ZSH

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Install zsh-completions

Customize the zsh

/home/sarthak-hp/.zshrc
# customize "zsh" here

A great guide for zsh Plugins and custominsations