여러가지 Terminal(Dos, PowerShell, Ubuntu...)을 하나로 관리 할 수 있다.
리눅스 딱 대
다중 창을 쓸 수도 있다.
setting.json
파일이 열릴 것이다|
vscode로 봐도 무방하고 메모장으로 봐도 무방하다.
우린 글씨 정보를 넣으면 된다.
D2Coding 글꼴 을 사용하도록 하자
{
// ...
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
**"fontFace": "D2Coding",
"fontSize": 14**
},
"list":
[
// ...
]
},
// ...
}
기본 Shell 설정
창 크기 및 시작 위치
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"initialPosition": "0, 0", // 시작 위치
"initialRows": 79, // 화면에 보이는 줄 수
"initialCols": 120, // 화면에 보이는 글자 수
창 배경화면 변경
{
// Make changes here to the powershell.exe profile.
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"background": "#262835"
},
단축키 변경
"keybindings": [
{
"command": "newTab",
"keys": ["ctrl+t"]
},
{
"command": "closeTab",
"keys": ["alt+q"]
}
]