Hyper Setup
Last updated
Was this helpful?
Last updated
Was this helpful?
Hyper is an Electron-based terminal built on HTML/CSS/JS. I like how less configurations I need to do to start doing my work. Credits to for this neat setup.
To install, simply run the following in your terminal:
After installing, open Hyper and use it for the rest of the setup.
hyper snazzy an elegant Hyper theme with bright colors
You'll need to install the PURE prompt installed first before proceeding
Since macOS Catalina and higher, Zsh has been adopted replacing Bash. So no need to manually install zsh anymore. If you're not sure you can run echo "$SHELL"
on your terminal and you should get /bin/zsh
as a response.
Oh-my-zsh is an open-source, community-driven framework for managing your zsh configuration
But you'll need node installed first:
Then, to install:
And add this to the end of your ~/.zshrc
What is a .zshrc file? Basically, it's a Z-shell resource that contains all your configurations.
Your .zshrc file is usually located at the root. To open, use your default text editor:
Big Sur Issue: After installing Brew, I get a "command not found"
Simply open your .zshrc file and add this:
export PATH=/opt/homebrew/bin:$PATH
Search for the plugins
line inside ~/.zshrc
and add the plugin to the list of plugins for Oh My Zsh to load
Then again, search for the plugins
line inside ~/.zshrc
and add the plugin to the list of plugins for Oh My Zsh to load
You need to source
your config
Pure is a pretty, minimal, and fast ZSH prompt
is a -like fast/unobtrusive autosuggestions for zsh. It suggests commands as you type based on command history.
is a Fish shell like syntax highlighting for Zsh.