Skip to content

Instantly share code, notes, and snippets.

@mark05e
Created September 14, 2019 16:10
Show Gist options
  • Save mark05e/e982da5af206b8e48fbbeccda07fce01 to your computer and use it in GitHub Desktop.
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
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