Skip to content

Instantly share code, notes, and snippets.

@Neko3000
Last active September 9, 2020 01:52
Show Gist options
  • Save Neko3000/257d8cb74247449830ddf2dc858f2022 to your computer and use it in GitHub Desktop.
Save Neko3000/257d8cb74247449830ddf2dc858f2022 to your computer and use it in GitHub Desktop.
HowTo: My Terminal & Shell setup - Hyper.js + ZSH + starship
module.exports = {
config: {
// rest of the config
activeTab: '🚀'
}
// rest of the file
}
module.exports = {
config: {
fontSize: 13,
fontFamily: '"Fira Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// rest of the config
}
// rest of the file
}
module.exports = {
// rest of the file
plugins: ["hyper-font-ligatures"],
module.exports = {
config: {
// rest of the config
webGLRenderer: false,
}
// rest of the file
}
module.exports = {
config: {
// rest of the config
shell: '/usr/local/bin/zsh',
}
// rest of the file
}
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// default font weight: 'normal' or 'bold'
fontWeight: 'normal',
// rest of the config
}
// rest of the file
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment