1.0.1 • Published 6 months ago

hyper-jans-theme v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Hyper jans theme screenshot displaying with spaceship prompt

Just a colorful dark theme built for Vercel's terminal Hyper.js.

Installation Options

Ensure you have Hyper.js terminal installed. If not, run the following command from your terminal.

$ brew install --cask hyper

Option 1: Hyper plugin manager

Then run the following from the command line:

$ hyper install hyper-jans-theme

Option 2: Manually

Open your ~/.hyper.js configuration file and add "hyper-jans-theme" to your plugins section.

  plugins: [...'hyper-jans-theme'],

Save changes made to ~./hyper.js, reload your terminal and happy coding!

My ~/.hyper.js Configuration

module.exports = {
  config: {
    fontSize: 13,
    // font family with optional fallbacks
    fontFamily: '"SF Mono", "Fira Code", monospace',
    // custom padding (CSS format, i.e.: `top right bottom left`)
    padding: '12px 30px 40px 30px',
    // hyperline configuration
    hyperline: {
      plugins: ['hostname', 'network', 'cpu', 'memory'],
    },
  },
  // a list of plugins to fetch and install from npm
  plugins: ['hyperline', 'hyper-pane', 'hyper-jans-theme'],
};

Here I use SF Mono for my font with Fira Code as a fallback for powerline icons. I also added some additional padding to accommodate for the hyperline plugin I use.