Skip to content

Commit

Permalink
+ fixing Hyper
Browse files Browse the repository at this point in the history
  • Loading branch information
ELLIOTTCABLE committed May 23, 2017
1 parent 30b9cc5 commit 154d506
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions Dotfiles/hyper.js
Expand Up @@ -16,8 +16,14 @@ module.exports = {
// set to true for blinking cursor
cursorBlink: true,

// color of the text
foregroundColor: '#fff',

// terminal background color
backgroundColor: '#000',

// border color (window, tabs)
borderColor: '#FFCC66',
borderColor: '#333',

// custom css to embed in the main window
css: '',
Expand Down Expand Up @@ -50,6 +56,28 @@ module.exports = {
, borderAngle: '120deg',
},

// 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: {
black: '#000000',
red: '#ff0000',
green: '#33ff00',
yellow: '#ffff00',
blue: '#0066ff',
magenta: '#cc00ff',
cyan: '#00ffff',
white: '#d0d0d0',
lightBlack: '#808080',
lightRed: '#ff0000',
lightGreen: '#33ff00',
lightYellow: '#ffff00',
lightBlue: '#0066ff',
lightMagenta: '#cc00ff',
lightCyan: '#00ffff',
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
// make sure to use a full path if the binary name doesn't work
Expand Down Expand Up @@ -89,10 +117,10 @@ module.exports = {
plugins: [
'hypercwd'
, 'hyperterm-alternatescroll'
//, 'hyperterm-focus-reporting'
, 'hyperterm-focus-reporting'

//, 'hyper-statusline'
//, 'hyper-tabs-enhanced'
, 'hyper-tabs-enhanced'
, 'hyper-statusline'

, 'hypersixteen'
, 'hyperborder'
Expand Down

0 comments on commit 154d506

Please sign in to comment.