Skip to content

Instantly share code, notes, and snippets.

@ikushaldave
Created July 10, 2020 04:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikushaldave/2a7bc86b0825ee381bdc791f44575609 to your computer and use it in GitHub Desktop.
Save ikushaldave/2a7bc86b0825ee381bdc791f44575609 to your computer and use it in GitHub Desktop.
Window Terminal Setting
{
"$schema": "https://aka.ms/terminal-profiles-schema",
// Change Whatever Profile You Have to Make Default By Changing defaultProfile Value with GUID Value of Profile Starting at (Line 12)
"defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"copyOnSelect": true,
"copyFormatting": false,
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
"colorScheme": "One Half Dark",
"fontSize": 10,
"useAcrylic": true,
"acrylicOpacity": 0.8
},
"list":
[
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
// add following if you want logo to add path of file with extension
"icon": "C:/ubuntu-logo.png",
"fontFace": "FuraMono Nerd Font",
// The Drive or Directory You Have Set Default to Point for C:/ D:/ E:/
"startingDirectory": "D:/"
},
{
// Make changes here to the powershell.exe profile.
"guid": "{c428e929-2dd7-4e3b-83fe-e696420d967b}",
"name": "git bash",
"commandline": "C:/Program Files/Git/bin/bash.exe",
"hidden": false,
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico"
},
{
// Make changes here to the cmd.exe profile.
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "Command Prompt",
"commandline": "cmd.exe",
"hidden": false,
"colorScheme": "synthwave"
},
{
// Make changes here to the powershell.exe profile.
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"colorScheme": "synthwave"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
]
},
// Add custom color schemes to this array.
// To learn more about color schemes, visit https://aka.ms/terminal-color-schemes
"schemes": [
{
"name": "Builtin Solarized Dark",
"black": "#073642",
"red": "#dc322f",
"green": "#859900",
"yellow": "#b58900",
"blue": "#268bd2",
"purple": "#d33682",
"cyan": "#2aa198",
"white": "#eee8d5",
"brightBlack": "#002b36",
"brightRed": "#cb4b16",
"brightGreen": "#586e75",
"brightYellow": "#657b83",
"brightBlue": "#839496",
"brightPurple": "#6c71c4",
"brightCyan": "#93a1a1",
"brightWhite": "#fdf6e3",
"background": "#002b36",
"foreground": "#839496"
},
{
"name": "synthwave",
"black": "#000000",
"red": "#f6188f",
"green": "#1ebb2b",
"yellow": "#fdf834",
"blue": "#2186ec",
"purple": "#f85a21",
"cyan": "#12c3e2",
"white": "#ffffff",
"brightBlack": "#000000",
"brightRed": "#f841a0",
"brightGreen": "#25c141",
"brightYellow": "#fdf454",
"brightBlue": "#2f9ded",
"brightPurple": "#f97137",
"brightCyan": "#19cde6",
"brightWhite": "#ffffff",
"background": "#000000",
"foreground": "#dad9c7"
}
],
// Add custom keybindings to this array.
// To unbind a key combination from your defaults.json, set the command to "unbound".
// To learn more about keybindings, visit https://aka.ms/terminal-keybindings
"keybindings":
[
// Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json.
// These two lines additionally bind them to Ctrl+C and Ctrl+V.
// To learn more about selection, visit https://aka.ms/terminal-selection
{ "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" },
{ "command": "paste", "keys": "ctrl+v" },
// Press Ctrl+Shift+F to open the search box
{ "command": "find", "keys": "ctrl+shift+f" },
// Press Alt+Shift+D to open a new pane.
// - "split": "auto" makes this pane open in the direction that provides the most surface area.
// - "splitMode": "duplicate" makes the new pane use the focused pane's profile.
// To learn more about panes, visit https://aka.ms/terminal-panes
{ "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment