hyper-custom-plugins
v1.1.2
Published
Create Hyper.app plugins from Hyper.app's configuration file `~/.hyper.js`.
Downloads
4
Maintainers
Readme
hyper-custom-plugins
Create Hyper.app plugins from Hyper.app's configuration file ~/.hyper.js
.
Why?
Sometimes all you want is a small change to the configuration or plugins in Hyper.app, but you don't want to have to create a whole plugin for it! This plugin makes it much easier to write mini-plugins that can do anything a normal plugin can do.
How to Use It
Just add the following properties to your ~/.hyper.js
.
config.customPlugins
The object containing the properties below:
config.customPlugins.output
A boolean value; whether to print to STDOUT
the npm
commands' output.
config.customPlugins.dependencies
An optional array of npm
module dependencies that will be used in your
plugins. These npm
modules will be dynamically installed and passed to
config.customPlugins.callback
afterwards.
config.customPlugins.callback
A function to be stringified and run in a Node.js vm
. It will have access to
the global
variable from hyper-custom-plugins
and the object, containing the
following properties, as an argument:
hooks
: An object that referenceshyper-custom-plugins
'module.exports
. Mutate this object to add other Hyper.app hooks. Overriding thedecorateConfig
property will prevent theconfig.customPlugins.callback
function from running until a new session is created or "Update Plugins" is run.config
: The initialconfig
object after it has been decorated by other plugins, unlesshyper-custom-plugins
is the first in theplugins
array inside~/.hyper.js
. Mutate this object to changeconfig
.dependencies
: An object with keys that will be the name of thenpm
modules passed inconfig.customPlugins.dependencies
and values that will be thenpm
modules after beingrequire
d.module
: A reference tohyper-custom-plugins
'module
object.
Example
I like to use the theme hyperterm-material
, but I wish that the
config.backgroundColor
it sets was slightly transparent! Instead of creating a
whole module just for this purpose, I just use hyper-custom-plugins
like this:
module.exports = {
config: {
customPlugins: {
output: false,
dependencies: ['color'],
callback: ({ hooks, config, dependencies, module }) => {
const { color: Color } = dependencies;
const { backgroundColor } = config;
const newBackground = Color(backgroundColor).fade(0.3).rgb().string();
config.backgroundColor = newBackground;
},
},
},
plugins: [
'hyperterm-material',
'hyper-custom-plugins'
],
};