Last active
December 15, 2020 12:44
-
-
Save nanoaquila/faa696123ff60b96e453edf49ed1c5b5 to your computer and use it in GitHub Desktop.
Windows Terminal settings backup
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{14ad203f-52cc-4110-90d6-d96e0f41b64d}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"profiles": { | |
"defaults": {}, | |
"list": [ | |
{ | |
"guid": "{fc16c689-9280-4e35-9908-91d7b03556f3}", | |
"name": "ssh server", | |
"tabTitle": "SSH Server", | |
"tabColor": "#1960b3", | |
"icon": "E:/Nanoaquila/Dropbox/icons/server.png", | |
"commandline": "ssh [email protected]", | |
"useAcrylic": true, | |
"colorScheme": "Dracula", | |
"cursorColor": "#e6e6e6", | |
"padding": "20, 0, 0, 0", | |
"fontFace": "Consolas", | |
"fontSize": 14, | |
"acrylicOpacity": 0.75 | |
}, | |
{ | |
"guid": "{14ad203f-52cc-4110-90d6-d96e0f41b64d}", | |
"name": "Git Bash", | |
"commandline": "E:/Program Files/Git/bin/bash.exe --login -i -l", | |
"hidden": false, | |
"tabTitle": "Git Bash", | |
"suppressApplicationTitle": true, | |
"acrylicOpacity": 0.75, | |
"closeOnExit": true, | |
"colorScheme": "Dracula", | |
"cursorColor": "#e6e6e6", | |
"cursorShape": "bar", | |
"fontFace": "Consolas", | |
"fontSize": 11, | |
"historySize": 120000, | |
"icon": "ms-appdata:///roaming/git-bash_32px.ico", | |
"padding": "20, 0, 0, 0", | |
"snapOnInput": true, | |
"useAcrylic": true, | |
"backgroundImage": "E:/Nanoaquila/Dropbox/monitor.png", | |
"backgroundImageStretchMode": "fill" | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"hidden": false | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"name": "Dracula", | |
"background": "#272935", | |
"black": "#21222C", | |
"blue": "#BD93F9", | |
"cyan": "#8BE9FD", | |
"foreground": "#85ccc8", | |
"green": "#50FA7B", | |
"purple": "#FF79C6", | |
"red": "#FF5555", | |
"white": "#f8f2f6", | |
"yellow": "#FFB86C", | |
"brightBlack": "#6272A4", | |
"brightBlue": "#D6ACFF", | |
"brightCyan": "#A4FFFF", | |
"brightGreen": "#69FF94", | |
"brightPurple": "#FF92DF", | |
"brightRed": "#FF6E6E", | |
"brightWhite": "#F8F8F2", | |
"brightYellow": "#FFFFA5" | |
} | |
], | |
"keybindings": [ | |
{ | |
"command": { | |
"action": "copy", | |
"singleLine": false | |
}, | |
"keys": "ctrl+c" | |
}, | |
{ | |
"command": "paste", | |
"keys": "ctrl+v" | |
}, | |
{ | |
"command": "find", | |
"keys": "ctrl+shift+f" | |
}, | |
{ | |
"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