Skip to content

Instantly share code, notes, and snippets.

@akatasonov
Forked from timcole/hyper.js
Created March 5, 2018 21:39
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 akatasonov/20b97355cc04218e0e38c9271f9cd8ff to your computer and use it in GitHub Desktop.
Save akatasonov/20b97355cc04218e0e38c9271f9cd8ff to your computer and use it in GitHub Desktop.
My Hyper Term config - w/ One Dark theme
module.exports = {
config: {
fontSize: 13,
fontFamily: '"Fira Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace, "Droid Sans Mono for Powerline"',
cursorColor: 'rgba(33, 150, 243, 0.75)',
cursorShape: 'BLOCK',
foregroundColor: '#abb2bf',
backgroundColor: '#202731',
borderColor: '#1C222B',
css: `body {
border-top: 35px solid #1C222B;
}
.header_windowHeader {
z-index: 1;
-webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.25);
}
.tabs_nav {
-webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.25);
height: 50px;
line-height: 50px;
vertical-align: middle;
cursor: pointer;
top: 34px;
}
.tab_text, .tab_tab {
height: 50px;
}
.tab_tab {
background: #202731;
border-bottom: 2px solid transparent !important;
}
.tab_active {
border-bottom: 2px solid rgb(33, 150, 243) !important;
}
.terms_termsShifted {
margin-top: 85px;
}`,
termCSS: `x-screen x-row {
font-variant-ligatures: initial;
}
.unicode-node {
padding: 1px 0;
vertical-align: center;
margin-top: -1px;
}`,
showHamburgerMenu: true,
showWindowControls: '',
padding: '12px 14px',
colors: {
black: '#000000',
red: '#e06c75',
green: '#98c379',
yellow: '#d19a66',
blue: '#2196f3',
magenta: '#c678dd',
cyan: '#56b6c2',
white: '#d0d0d0',
lightBlack: '#808080',
lightRed: '#db414c',
lightGreen: '#86c35b',
lightYellow: '#e8a82c',
lightBlue: '#0066ff',
lightMagenta: '#cc00ff',
lightCyan: '#00ffff',
lightWhite: '#ffffff'
},
shell: 'C:\\Windows\\System32\\bash.exe',
shellArgs: [ "~" ],
env: {},
bell: true,
copyOnSelect: true,
modifierKeys: {
cmdIsMeta: false,
altIsMeta: true
},
windowSize: [ 850, 550 ],
alwaysOnTop: {
debug: false,
default: false
}
},
plugins: [ 'hyper-blink', 'hyper-always-on-top' ],
localPlugins: [],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment