Last active
February 4, 2022 14:06
-
-
Save maximousblk/60a65558d9b092aff3991390bf6bf856 to your computer and use it in GitHub Desktop.
My Windows Terminal Settings
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
Show hidden characters
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"copyFormatting": "rtf", | |
"copyOnSelect": false, | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"launchMode": "maximized", | |
"multiLinePasteWarning": false, | |
"showTerminalTitleInTitlebar": false, | |
"startOnUserLogin": false, | |
"theme": "dark", | |
"trimBlockSelection": true, | |
"useAcrylicInTabRow": true, | |
"windowingBehavior": "useExisting", | |
"profiles": { | |
"defaults": { | |
"bellStyle": "none", | |
"closeOnExit": "graceful", | |
"colorScheme": "Horizon", | |
"font": { "face": "JetBrains Mono", "size": 14 }, | |
"suppressApplicationTitle": true, | |
"tabColor": "#1C1E26" | |
}, | |
"list": [ | |
{ | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell", | |
"source": "Windows.Terminal.PowershellCore" | |
}, | |
{ | |
"commandline": "wsl -d ubuntu", | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"icon": "C:/Users/maximousblk/.wt/icons/ubuntu.ico", | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"commandline": "wsl -d kali-linux", | |
"guid": "{46ca431a-3a87-5fb3-83cd-11ececc031d2}", | |
"hidden": false, | |
"icon": "C:/Users/maximousblk/.wt/icons/kali.png", | |
"name": "Kali Linux", | |
"source": "Windows.Terminal.Wsl" | |
}, | |
{ | |
"commandline": "C:/Program Files/Git/bin/bash.exe -li", | |
"guid": "{ced5fbe8-313c-4760-9a4b-ed66b4901125}", | |
"icon": "C:/Program Files/Git/mingw64/share/git/git-for-windows.ico", | |
"startingDirectory": "%USERPROFILE%", | |
"name": "Git Bash" | |
}, | |
{ | |
"commandline": "cmd.exe", | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt" | |
}, | |
{ | |
"commandline": "gh codespace ssh", | |
"guid": "{aea4e575-a44a-4bad-8da5-db04ef46a6a1}", | |
"icon": "C:/Users/maximousblk/.wt/icons/github.png", | |
"name": "GitHub Codespaces" | |
}, | |
{ | |
"commandline": "ssh [email protected] -i ~/.ssh/nest_x", | |
"guid": "{afe85ff3-11fb-4ac3-8acb-500f871c3693}", | |
"icon": "C:/Users/maximousblk/.wt/icons/digitalocean.ico", | |
"name": "Nest X (SSH)" | |
}, | |
{ | |
"commandline": "ssh [email protected] -i ~/.ssh/nest_aws", | |
"guid": "{d0a8611a-2e24-4f60-b78f-03fbf687561f}", | |
"icon": "C:/Users/maximousblk/.wt/icons/aws.ico", | |
"name": "Nest AWS (SSH)" | |
} | |
] | |
}, | |
"schemes": [ | |
{ | |
"background": "#1C1E26", | |
"black": "#16161C", | |
"blue": "#26BBD9", | |
"brightBlack": "#767676", | |
"brightBlue": "#3FC6DE", | |
"brightCyan": "#6BE6E6", | |
"brightGreen": "#3FDAA4", | |
"brightPurple": "#F075B7", | |
"brightRed": "#EC6A88", | |
"brightWhite": "#F2F2F2", | |
"brightYellow": "#FBC3A7", | |
"cursorColor": "#E95678", | |
"cyan": "#59E3E3", | |
"foreground": "#D5D8DA", | |
"green": "#29D398", | |
"name": "Horizon", | |
"purple": "#EE64AE", | |
"red": "#E95678", | |
"selectionBackground": "#FDF0ED", | |
"white": "#CCCCCC", | |
"yellow": "#FAB795" | |
} | |
], | |
"actions": [ | |
{ "command": { "action": "quakeMode" }, "keys": "win+`" }, | |
{ "command": "find", "keys": "ctrl+shift+f" }, | |
{ "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, | |
{ "command": "paste", "keys": "ctrl+v" }, | |
{ "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