Update .hyper.js
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
111e4b3eb4
commit
2135105a1d
1 changed files with 0 additions and 20 deletions
20
.hyper.js
20
.hyper.js
|
@ -1,38 +1,25 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
config: {
|
config: {
|
||||||
// default font size in pixels for all tabs
|
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
|
|
||||||
// font family with optional fallbacks
|
|
||||||
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
|
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
|
||||||
|
|
||||||
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
|
|
||||||
cursorColor: 'rgba(248,28,229,0.75)',
|
cursorColor: 'rgba(248,28,229,0.75)',
|
||||||
|
|
||||||
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
|
|
||||||
cursorShape: 'BLOCK',
|
cursorShape: 'BLOCK',
|
||||||
|
|
||||||
// color of the text
|
|
||||||
foregroundColor: '#fff',
|
foregroundColor: '#fff',
|
||||||
|
|
||||||
// terminal background color
|
|
||||||
backgroundColor: '#000',
|
backgroundColor: '#000',
|
||||||
|
|
||||||
// border color (window, tabs)
|
|
||||||
borderColor: '#333',
|
borderColor: '#333',
|
||||||
|
|
||||||
// custom css to embed in the main window
|
|
||||||
css: '',
|
css: '',
|
||||||
|
|
||||||
// custom css to embed in the terminal window
|
|
||||||
termCSS: '',
|
termCSS: '',
|
||||||
|
|
||||||
// custom padding (css format, i.e.: `top right bottom left`)
|
|
||||||
padding: '12px 14px',
|
padding: '12px 14px',
|
||||||
|
|
||||||
// the full list. if you're going to provide the full color palette,
|
|
||||||
// including the 6 x 6 color cubes and the grayscale map, just provide
|
|
||||||
// an array here instead of a color map object
|
|
||||||
colors: {
|
colors: {
|
||||||
black: '#000000',
|
black: '#000000',
|
||||||
red: '#ff0000',
|
red: '#ff0000',
|
||||||
|
@ -52,21 +39,14 @@ module.exports = {
|
||||||
lightWhite: '#ffffff'
|
lightWhite: '#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
|
|
||||||
shell: '',
|
shell: '',
|
||||||
|
|
||||||
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
|
|
||||||
// by default ['--login'] will be used
|
|
||||||
shellArgs: ['--login'],
|
shellArgs: ['--login'],
|
||||||
|
|
||||||
// for environment variables
|
|
||||||
env: {},
|
env: {},
|
||||||
|
|
||||||
// set to false for no bell
|
|
||||||
bell: false,
|
bell: false,
|
||||||
|
|
||||||
// if true, selected text will automatically be copied to the clipboard
|
|
||||||
copyOnSelect: false
|
copyOnSelect: false
|
||||||
|
|
||||||
// URL to custom bell
|
// URL to custom bell
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue