Created
January 4, 2021 11:35
-
-
Save imshuffling/faaeaa9714d2a27ee8d9e055be0b918a to your computer and use it in GitHub Desktop.
hyper.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const plugins = [ | |
"hyper-oceans16", | |
"hyper-statusline", | |
"hyper-tabs-enhanced", | |
"hyperborder", | |
"hypercwd", | |
"hyperterm-paste", | |
"hyperlinks", | |
"hyperterm-cursor", | |
"hyper-search", | |
"hyperterm-close-on-left", | |
"hyperterm-working-directory", | |
]; | |
const pluginConfig = { | |
hyperBorder: { | |
borderColors: ["#651fff", "#f40088"], | |
borderWidth: "0.3em", | |
}, | |
hyperTabs: { | |
trafficButtons: true, | |
}, | |
hypercwd: { | |
initialWorkingDirectory: "~/Sites", | |
}, | |
}; | |
module.exports = { | |
config: { | |
updateChannel: "stable", | |
fontSize: 17, | |
fontFamily: "Monaco", | |
workingDirectory: "~/Sites", | |
windowSize: [1200, 600], | |
cursorColor: "rgba(248,28,229,0.8)", | |
cursorAccentColor: "#000", | |
cursorShape: "BLOCK", | |
cursorBlink: true, | |
copyOnSelect: true, | |
foregroundColor: "#3498db", | |
backgroundColor: "#111025", | |
selectionColor: "rgba(248,28,229,0.3)", | |
borderColor: "#333", | |
css: "", | |
termCSS: "", | |
showHamburgerMenu: "", | |
showWindowControls: "", | |
padding: "12px 14px", | |
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", | |
}, | |
shell: "zsh", | |
shellArgs: ["--login"], | |
env: {}, | |
bell: "SOUND", | |
copyOnSelect: true, | |
defaultSSHApp: true, | |
quickEdit: false, | |
macOptionSelectionMode: "vertical", | |
webGLRenderer: true, | |
// PLUGINS | |
...pluginConfig, | |
}, | |
plugins, | |
localPlugins: [], | |
keymaps: {}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment