WindowsTerminal¶
https://docs.microsoft.com/ja-jp/windows/terminal/
profile¶
%LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json
WSL: home dir¶
https://docs.microsoft.com/en-us/windows/terminal/troubleshooting
\\wsl$\Ubuntu-20.04\home\USER_NAME
color scheme¶
vscode¶
settings.json
{
"terminal.integrated.profiles.windows": {
"wt": {
"path": [
"${env:LOCALAPPDATA}\\Microsoft\\WindowsApps\\wt.exe",
],
"args": [
"-p",
"cmd",
"cmd",
],
"icon": "terminal-linux",
},
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
}
},
"terminal.integrated.defaultProfile.windows": "wt",
}