Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 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. {
  13. // Make changes here to the powershell.exe profile
  14. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
  15. "name": "Terminal",
  16. "commandline": "powershell.exe",
  17. "colorScheme" : "Dracula",
  18. "hidden": false,
  19. "useAcrylic" : false,
  20. "cursorColor" : "#FFFFFF",
  21. "cursorShape" : "bar",
  22. "fontFace" : "Consolas",
  23. "fontSize" : 10,
  24. "startingDirectory": ".",
  25. "experimental.retroTerminalEffect": true,
  26. "acrylicOpacity": 0.7
  27. },
  28. {
  29. // Make changes here to the cmd.exe profile
  30. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
  31. "commandline": "cmd.exe",
  32. "name": "Terminal - CMD",
  33. "colorScheme" : "Dracula",
  34. "hidden": false,
  35. "useAcrylic" : false,
  36. "cursorColor" : "#FFFFFF",
  37. "cursorShape" : "bar",
  38. "fontFace" : "Consolas",
  39. "fontSize" : 10,
  40. "startingDirectory": ".",
  41. "experimental.retroTerminalEffect": true,
  42. "acrylicOpacity": 0.7
  43. },
  44. {
  45. "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
  46. "hidden": false,
  47. "name": "Terminal - Ubuntu",
  48. "source": "Windows.Terminal.Wsl",
  49. "colorScheme" : "Dracula",
  50. "useAcrylic" : false,
  51. "cursorColor" : "#FFFFFF",
  52. "cursorShape" : "bar",
  53. "fontFace" : "Consolas",
  54. "fontSize" : 10,
  55. "startingDirectory": ".",
  56. "experimental.retroTerminalEffect": true,
  57. "acrylicOpacity": 0.7
  58. },
  59. {
  60. "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
  61. "hidden": true,
  62. "name": "Azure Cloud Shell",
  63. "source": "Windows.Terminal.Azure"
  64. }
  65. ],
  66.  
  67. // Add custom color schemes to this array
  68. "schemes": [
  69. {
  70. "name" : "Dracula",
  71. "background" : "#282A36",
  72. "black" : "#21222C",
  73. "blue" : "#BD93F9",
  74. "brightBlack" : "#6272A4",
  75. "brightBlue" : "#D6ACFF",
  76. "brightCyan" : "#A4FFFF",
  77. "brightGreen" : "#69FF94",
  78. "brightPurple" : "#FF92DF",
  79. "brightRed" : "#FF6E6E",
  80. "brightWhite" : "#FFFFFF",
  81. "brightYellow" : "#FFFFA5",
  82. "cyan" : "#8BE9FD",
  83. "foreground" : "#F8F8F2",
  84. "green" : "#50FA7B",
  85. "purple" : "#FF79C6",
  86. "red" : "#FF5555",
  87. "white" : "#F8F8F2",
  88. "yellow" : "#F1FA8C"
  89. }
  90. ],
  91.  
  92. // Add any keybinding overrides to this array.
  93. // To unbind a default keybinding, set the command to "unbound"
  94. "keybindings": []
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement