Skip to content

Instantly share code, notes, and snippets.

@localghost666
Created February 3, 2019 15:46
Show Gist options
  • Save localghost666/f6c63ddfa2f38c40798ee42e84dcbfb7 to your computer and use it in GitHub Desktop.
Save localghost666/f6c63ddfa2f38c40798ee42e84dcbfb7 to your computer and use it in GitHub Desktop.
Visual Studio Code에서 기본 터미널을 git-bash로 설정하는 부분
{
"terminal.integrated.shell.windows": "C:\\Users\\[username]\\scoop\\apps\\git\\current\\bin\\bash.exe",
"terminal.integrated.shellArgs.windows": ["--login", "-i"],
"terminal.integrated.env.windows": {
"PROJECT_DIR": "${workspaceFolder}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment