Skip to content

Instantly share code, notes, and snippets.

@mikestaub
Created November 11, 2018 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikestaub/66afcd784b3cd3e55531ab3dd46feb3b to your computer and use it in GitHub Desktop.
Save mikestaub/66afcd784b3cd3e55531ab3dd46feb3b to your computer and use it in GitHub Desktop.
.hyper.js-windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 14,
windowSize: [1280, 720],
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#F81CE5',
// color of the text
foregroundColor: '#fff',
// terminal background color
backgroundColor: '#000',
// hyperterm-transparent-bg plugin
transparentBg: {
WebkitFilter: 'blur(5px)',
opacity: '0.3'
},
// border color (window, tabs)
borderColor: '#333',
// custom css to embed in the main window
css: '',
// custom css to embed in the terminal window
termCSS: '',
// custom padding (css format, i.e.: `top right bottom left`)
padding: '12px 14px',
// some color overrides. see http://bit.ly/29k1iU2 for
// the full list
colors: [
'#000000',
'#ff0000',
'#33ff00',
'#ffff00',
'#0066ff',
'#cc00ff',
'#00ffff',
'#d0d0d0',
'#808080',
'#ff0000',
'#33ff00',
'#ffff00',
'#0066ff',
'#cc00ff',
'#00ffff',
'#ffffff'
],
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
// if left empty, your system's login shell will be used by default
// make sure to use a full path if the binary name doesn't work
// (e.g `C:\\Windows\\System32\\bash.exe` instad of just `bash.exe`)
// if you're using powershell, make sure to remove the `--login` below
shell: 'C:\\Program Files\\Git\\git-cmd.exe',
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
// by default ['--login'] will be used
shellArgs: ['--command=usr/bin/bash.exe', '-l', '-i'],
// for environment variables
env: { TERM: 'cygwin'},
// set to false for no bell
bell: 'SOUND',
// if true, selected text will automatically be copied to the clipboard
copyOnSelect: false,
// if `true` (without backticks and without quotes), hyper will be set as the default protocol client for SSH
defaultSSHApp: true,
// if `true` (without backticks and without quotes), on right click selected text will be copied or pasted if no
// selection is present (`true` by default on Windows and disables the context menu feature)
// quickEdit: true,
// URL to custom bell
// bellSoundURL: 'http://example.com/bell.mp3',
// for advanced config flags please refer to https://hyper.is/#cfg
opacity: 0.96
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [
'hyperterm-blink',
'hyperterm-title',
'hyperterm-tab-numbers',
'hyperterm-themed-scrollbar',
'hyperterm-material',
'hypercwd',
"hyperlinks",
"hyper-statusline",
"hyperterm-tabs",
"hyper-sync-settings",
"hyper-snazzy",
"hyper-systray",
"hyper-opacity",
"hyper-tab-icons",
"hyperborder"
],
// in development, you can create a directory under
// `~/.hyperterm_plugins/local/` and include it here
// to load it and avoid it being `npm install`ed
localPlugins: [],
autoProfile: {
prompts: [],
profiles: [{
triggers: [
'@default',
],
backgroundColor: '#401',
},
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment