使用git安装hyper

使用git安装hyper,git,hyper,Git,Hyper,我正在尝试安装hyper来代替cmd,但要与git一起使用 ,安装后,我更改了hyper.js文件,但可能在步骤中遗漏了一些内容 我更改了git.exe的路径, 我不确定我是否需要改变其他东西 更改后,hyper不再工作 我的代码是 module.exports = { config: { fontSize: 12, fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console

我正在尝试安装hyper来代替cmd,但要与git一起使用 ,安装后,我更改了hyper.js文件,但可能在步骤中遗漏了一些内容 我更改了git.exe的路径, 我不确定我是否需要改变其他东西 更改后,hyper不再工作 我的代码是

module.exports = {
  config: {
    fontSize: 12,
    fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
    cursorColor: 'rgba(248,28,229,0.8)',
    cursorShape: 'BLOCK',
    foregroundColor: '#fff',
    backgroundColor: '#000',
    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'
    },

    // 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
    // (e.g `C:\\Windows\\System32\\bash.exe` instad of just `bash.exe`)
    // if you're using powershell, make sure to remove the `--login` below
    shell: "C:\Users\zachi.refaeli\AppData\Local\Programs\Git\cmd\git.exe",

    // for setting shell arguments (i.e. for using interactive shellArgs: ['-i'])
    // by default ['--login'] will be used
    shellArgs: ['--command=zachi.refaeli/bin/bash.exe', '-l', '-i'],

    env: { TERM: 'cygwin'},
    bell: 'SOUND',
    copyOnSelect: false
  
  plugins: [],
  localPlugins: []
};