Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1.  
  2. // To view the default settings, hold "alt" while clicking on the "Settings" button.
  3. // For documentation on these settings, see: https://aka.ms/terminal-documentation
  4.  
  5. {
  6. "$schema": "https://aka.ms/terminal-profiles-schema",
  7.  
  8. "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  9.  
  10. "profiles": [
  11. {
  12. // Make changes here to the powershell.exe profile
  13. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  14. "name": "Windows PowerShell",
  15. "fontFace": "Cascadia",
  16. "commandline": "powershell.exe",
  17. "useAcrylic": true,
  18. "acrylicOpacity": 0.55,
  19. "colorScheme": "MaterialOne",
  20. "hidden": false
  21. },
  22. {
  23. "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
  24. "hidden": false,
  25. "colorScheme": "MaterialOne",
  26. "name": "Ubuntu",
  27. "closeOnExit": true,
  28. "useAcrylic": true,
  29. "acrylicOpacity": 0.55,
  30. "icon": "C:\\Program Files\\Git\\ubuntu.png",
  31. "startingDirectory": "/",
  32. "source": "Windows.Terminal.Wsl"
  33. },
  34. {
  35. "guid": "{00000000-0000-0000-ba54-000000000002}",
  36. "closeOnExit": true,
  37. "colorScheme": "MaterialOne",
  38. "commandline": "\"%PROGRAMFILES%\\git\\usr\\bin\\bash.exe\" -i -l",
  39. "fontFace": "Cascadia",
  40. "historySize": 9001,
  41. "icon": "C:\\Program Files\\Git\\giticon.png",
  42. "name": "Git Bash",
  43. "snapOnInput": true,
  44. "startingDirectory": "%USERPROFILE%",
  45. "useAcrylic": true,
  46. "acrylicOpacity": 0.55
  47. },
  48. {
  49. // Make changes here to the cmd.exe profile
  50. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
  51. "name": "cmd",
  52. "fontFace": "Cascadia",
  53. "commandline": "cmd.exe",
  54. "useAcrylic": true,
  55. "acrylicOpacity": 0.55,
  56. "colorScheme": "MaterialOne",
  57. "hidden": false
  58. },
  59. {
  60. "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
  61. "hidden": false,
  62. "name": "Azure Cloud Shell",
  63. "source": "Windows.Terminal.Azure",
  64. "useAcrylic": true,
  65. "acrylicOpacity": 0.55,
  66. "colorScheme": "MaterialOne",
  67. "fontFace": "Cascadia"
  68. }
  69. ],
  70.  
  71. // Add custom color schemes to this array
  72. "schemes": [
  73. {
  74. "background": "#000000",
  75. "black": "#000000",
  76. "blue": "#2980b9",
  77. "brightBlack": "#7f8c8d",
  78. "brightBlue": "#3498db",
  79. "brightCyan": "#1abc9c",
  80. "brightGreen": "#2ecc71",
  81. "brightPurple": "#9b59b6",
  82. "brightRed": "#e74c3c",
  83. "brightWhite": "#ecf0f1",
  84. "brightYellow": "#f1c40f",
  85. "cyan": "#16a085",
  86. "foreground": "#ecf0f1",
  87. "green": "#27ae60",
  88. "name": "MaterialOne",
  89. "purple": "#8e44ad",
  90. "red": "#c0392b",
  91. "white": "#ecf0f1",
  92. "yellow": "#f39c12"
  93. }
  94. ],
  95.  
  96. // Add any keybinding overrides to this array.
  97. // To unbind a default keybinding, set the command to "unbound"
  98. "keybindings": [
  99. {
  100. "command": "closeTab",
  101. "keys": [
  102. "ctrl+w"
  103. ]
  104. }
  105. ]
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement