Last active
May 15, 2023 09:54
-
-
Save thecodermehedi/04d2ebaaa36e48aba651854fa69caf0e to your computer and use it in GitHub Desktop.
Hyper Terminal Configuration File For Windows
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
"use strict"; | |
module.exports = { | |
config: { | |
updateChannel: "stable", | |
fontSize: 36, | |
fontFamily: '"JetBrainsMono Nerd Font Mono", "FiraCode NFM", monospace', | |
fontWeight: "normal", | |
fontWeightBold: "bold", | |
lineHeight: 1, | |
letterSpacing: 0, | |
cursorColor: "rgba(248,28,229,0.8)", | |
cursorAccentColor: "#000", | |
cursorShape: "BLOCK", | |
cursorBlink: true, | |
foregroundColor: "#fff", | |
backgroundColor: "#000", | |
selectionColor: "rgba(248,28,229,0.3)", | |
borderColor: "#333", | |
css: "", | |
termCSS: "", | |
workingDirectory: "", | |
showHamburgerMenu: "", | |
showWindowControls: "", | |
padding: "12px 14px", | |
colors: { | |
black: "#000000", | |
red: "#C51E14", | |
green: "#1DC121", | |
yellow: "#C7C329", | |
blue: "#0A2FC4", | |
magenta: "#C839C5", | |
cyan: "#20C5C6", | |
white: "#C7C7C7", | |
lightBlack: "#686868", | |
lightRed: "#FD6F6B", | |
lightGreen: "#67F86F", | |
lightYellow: "#FFFA72", | |
lightBlue: "#6A76FB", | |
lightMagenta: "#FD7CFC", | |
lightCyan: "#68FDFE", | |
lightWhite: "#FFFFFF", | |
}, | |
shell: "C:\\Program Files\\Git\\bin\\bash.exe", | |
shellArgs: ["--command=usr/bin/bash.exe", "-l", "-i"], | |
env: { TERM: "cygwin" }, | |
bell: "false", | |
copyOnSelect: false, | |
defaultSSHApp: true, | |
quickEdit: false, | |
macOptionSelectionMode: "vertical", | |
webGLRenderer: true, | |
webLinksActivationKey: "", | |
disableLigatures: false, | |
disableAutoUpdates: false, | |
}, | |
plugins: ["hyper-snazzy", "hyper-opacity", "hyper-tab-icons", "hyperborder"], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment