Skip to content

Instantly share code, notes, and snippets.

@cloges4
Created February 8, 2020 23:56
Show Gist options
  • Select an option

  • Save cloges4/88a3a4a5befcfa993999501936a4e270 to your computer and use it in GitHub Desktop.

Select an option

Save cloges4/88a3a4a5befcfa993999501936a4e270 to your computer and use it in GitHub Desktop.

Revisions

  1. cloges4 created this gist Feb 8, 2020.
    79 changes: 79 additions & 0 deletions profiles.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,79 @@

    // To view the default settings, hold "alt" while clicking on the "Settings" button.
    // For documentation on these settings, see: https://aka.ms/terminal-documentation

    {
    "$schema": "https://aka.ms/terminal-profiles-schema",

    "defaultProfile": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",

    "profiles":
    [
    {
    // Make changes here to the powershell.exe profile
    "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
    "name": "Windows PowerShell",
    "commandline": "powershell.exe",
    //**** user changes
    "useAcrylic": true,
    "acrylicOpacity": 0.5,
    //******
    "hidden": false
    },
    {
    // Make changes here to the cmd.exe profile
    "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
    "name": "cmd",
    "commandline": "cmd.exe",
    "hidden": false
    },
    {
    "guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}",
    "hidden": false,
    "name": "Ubuntu-18.04",
    "source": "Windows.Terminal.Wsl",
    // my changes
    "cursorShape": "underscore",
    "useAcrylic": true,
    "startingDirectory": "%USERPROFILE%/Development",
    "cursorColor": "#EFEA5A",
    "acrylicOpacity": 0.25,
    "colorScheme": "One Dark"
    },
    {
    "guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
    "hidden": true,
    "name": "Azure Cloud Shell",
    "source": "Windows.Terminal.Azure"
    }
    ],

    // Add custom color schemes to this array
    "schemes": [
    {
    "name": "One Dark",
    "foreground": "#EFEA5A",
    "background": "#282C34",
    "black": "#282C34",
    "red": "#E06C75",
    "green": "#98C379", //directory highlight
    "yellow": "#E5C07B",
    "blue": "#000", // changed
    "purple": "#C678DD",
    "cyan": "#56B6C2",
    "white": "#DCDFE4",
    "brightBlack": "#5A6374",
    "brightRed": "#E06C75",
    "brightGreen": "#98C379",
    "brightYellow": "#E5C07B",
    "brightBlue": "#61AFEF",
    "brightPurple": "#C678DD",
    "brightCyan": "#56B6C2",
    "brightWhite": "#DCDFE4"
    }
    ],

    // Add any keybinding overrides to this array.
    // To unbind a default keybinding, set the command to "unbound"
    "keybindings": []
    }