-
Notifications
You must be signed in to change notification settings - Fork 9
/
.windows_terminals_settings.json
38 lines (37 loc) · 1.75 KB
/
.windows_terminals_settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"defaultProfile": "{00000000-0000-6170-ba54-000000000001}",
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
// https://docs.microsoft.com/en-us/windows/terminal/customize-settings/profile-settings
"acrylicOpacity" : 0.5, // default 0.5
"closeOnExit" : "graceful", // default "graceful"
"colorScheme" : "Campbell Powershell", // default "Campbell"
"cursorColor" : "#0f0",
"cursorShape" : "vintage", // default "bar"
"fontFace" : "Lucida Console", // default "Cascadia Mono"
"fontSize" : 6, // default 12
"historySize" : 9001, // default 9001
"padding" : "0, 0, 0, 0", // default "8, 8, 8, 8"
"snapOnInput" : true, // defaut true
"useAcrylic" : false, // default false
},
"list":
[
// https://stackoverflow.com/questions/56839307/adding-git-bash-to-the-new-windows-terminal
{
"commandline": "%PROGRAMFILES%/git/usr/bin/bash.exe -i -l",
// "commandline": "%USERPROFILE%/AppData/Local/Programs/Git/bin/bash.exe -l -i",
// "commandline": "%USERPROFILE%/scoop/apps/git/current/usr/bin/bash.exe -l -i",
"guid": "{00000000-0000-6170-ba54-000000000001}",
"icon": "%PROGRAMFILES%/Git/mingw64/share/git/git-for-windows.ico",
// "icon": "%USERPROFILE%/AppData/Local/Programs/Git/mingw64/share/git/git-for-windows.ico",
// "icon": "%USERPROFILE%/apps/git/current/usr/share/git/git-for-windows.ico",
"name" : "Bash",
"startingDirectory" : "%USERPROFILE%",
}
]
},
}