Hyper is pretty cool in that it is a terminal emulator built entirely from html/css and javascript. Behind the scenes, Hyper uses Electron for its cross platform compatibility.
In this very brief guide, we'll get up and running with the hyper terminal along with a few plugins.
Install homebrew cask and then issue the command:
brew cask install hyperecho $0chsh -s $(which zsh)vi ~/.hyper.jsshell: '/usr/local/bin/zsh'nvim ~/.zshrcexport EDITOR="/usr/local/bin/nvim"CMD + Shift + . to force hidden files/folder to be shownCongrats! If you're still here and made it this far, you have a basic installation of the Hyper terminal emulator configured and running.
Now for a slight detour, let's beautify our terminal:
Install Oh-My-Zsh
sh install.sh to install all the fontssource ~/.zshrc for any changes you make to zsh to take effect immediatelyNow let's add a plugin or two to make this thing look cool.
nvm install nodenvim ~/.hyperjs
plugins: ['hyperminimal'],CTRL + ALT + Fplugins: ['hyperminimal', 'hyper-snazzy'],Congrats!
You now have a nice looking terminal that is completely written using html, js, and csss. It is very customizable.
Check out awesome hyper for more neat plugins and color schemes: https://bnb.github.io/awesome-hyper/
I hope this helped! Leave comments below if you run into any issues.