Last active
October 2, 2020 00:51
-
-
Save augusticor/4e5a78aa619dcabbf3a7ab44059941bc to your computer and use it in GitHub Desktop.
My settings for the new Windows Terminal π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
// Last modified by augusticor on : 01/10/2020 | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"theme": "dark", | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all profiles. | |
"startingDirectory": ".", | |
"fontSize": 13, | |
"fontWeight": "normal", | |
"cursorShape": "vintage", | |
"backgroundImageOpacity": 0.1 | |
}, | |
"list": [ | |
{ | |
// Make changes here to the powershell.exe profile. | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"tabColor": "#0878A9", | |
"foreground": "#FFFFFF" | |
}, | |
{ | |
// Make changes here to the cmd.exe profile. | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"foreground": "#FFFFFF" | |
}, | |
{ | |
//Make changes here to the Git Bash Profile | |
"guid": "{2e963372-1eaf-480a-a5be-daead9dda454}", | |
"name": "GIT Bash", | |
"commandline": "\"C:/Program Files/Git/bin/bash.exe\"--login -i", | |
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico", | |
"backgroundImage": "C:/Users/OSCAR/Pictures/WallPapers/git.jpg" | |
}, | |
{ | |
//Make changes here to the NodeJS Command Prompt Profile | |
"guid": "{17746b3d-daba-4daa-babe-5ade65287cbe}", | |
"name": "Node JS CLI", | |
"commandline": "cmd.exe /k \"C:/Program Files/nodejs/nodevars.bat\"", | |
"icon": "C:/Users/OSCAR/Pictures/Icons .ico/node js console.ico", | |
"tabColor": "#026E00", | |
"foreground": "#52DF15", | |
"backgroundImage": "C:/Users/OSCAR/Pictures/WallPapers/nodeJS.jpeg" | |
}, | |
{ | |
//Make changes here to the Angular Command Prompt Profile | |
"guid": "{f603b5f4-201b-4be5-81e8-ff2fd81084f5}", | |
"name": "Angular JS CLI", | |
"commandline": "cmd.exe", | |
"icon": "C:/Users/OSCAR/Pictures/Icons .ico/angular js.ico", | |
"tabColor": "#3263F1", | |
"foreground": "#1e88e5" | |
}, | |
{ | |
//Make changes here to the Azure Cloud Shell Profile | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"hidden": false | |
} | |
] | |
}, | |
// Add custom color schemes to this array. To learn more about color schemes, visit https://aka.ms/terminal-color-schemes | |
"schemes": [], | |
// 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": [ | |
{ | |
"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. https://aka.ms/terminal-panes | |
{ | |
"command": { | |
"action": "splitPane", | |
"split": "auto", | |
"splitMode": "duplicate" | |
}, | |
"keys": "alt+shift+d" | |
}, | |
{ | |
"command": "toggleFullscreen", | |
"keys": "f11" | |
} | |
// And the default ones, don't forget them, press alt + click on configuration icon on terminal | |
] | |
} |
Author
augusticor
commented
Oct 2, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment