Created
September 14, 2019 16:10
-
-
Save mark05e/e982da5af206b8e48fbbeccda07fce01 to your computer and use it in GitHub Desktop.
Config for hyper's terminal app (https://hyper.is/) with plugin hyper-launch-menu
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
module.exports = { | |
config: { | |
// truncated | |
// hyper-launch-menu configuration | |
shells: [ | |
{Name: "CMD", shell: 'cmd.exe', args: ['--login']}, | |
{name: "Powershell", group: [ | |
{name: "Windows", shell: "powershell.exe", args: ['--login']}, | |
{name: "Core", shell: "C:\\tools\\powershell-core7\\pwsh.exe", default: true}, | |
]}, | |
{name: "Bash", group: [ | |
{name: "WSL", shell: 'C:\\Windows\\System32\\bash.exe', args: ['--login']}, | |
{name: "Git", shell: "C:\\Program Files\\Git\\bin\\bash.exe", args: ["--login"]}, | |
]}, | |
{name: "Visual Studio", shell: "cmd.exe", args: ["/k", "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat", "amd64"]} | |
], | |
}, | |
// truncated | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment