Last active
December 6, 2020 18:46
-
-
Save moosetraveller/3d9fcf900f01bbd15c101cb111b1232a to your computer and use it in GitHub Desktop.
Windows Terminal Configuration File with Anaconda Prompt
This file contains 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": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"copyOnSelect": false, | |
"copyFormatting": true, | |
"profiles": { | |
"defaults": { | |
}, | |
"list": [ | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"name": "Command Prompt", | |
"commandline": "cmd.exe", | |
"hidden": false, | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{021482ec-03b8-42e1-9351-dfb81b03c98f}", | |
"name": "Anaconda Prompt (arcgis)", | |
"commandline": "cmd.exe /K C:\\apps\\anaconda3\\Scripts\\activate.bat C:\\Users\\thozub\\AppData\\Local\\ESRI\\conda\\envs\\arcgispro-py3-clone", | |
"hidden": false, | |
"icon": "c:\\apps\\anaconda3\\Menu\\anaconda-navigator.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{3e8ad71c-327b-4ea4-b0b0-ded68a2ad627}", | |
"name": "Anaconda Prompt (base)", | |
"commandline": "cmd.exe /K C:\\apps\\anaconda3\\Scripts\\activate.bat C:\\apps\\anaconda3", | |
"hidden": false, | |
"icon": "c:\\apps\\anaconda3\\Menu\\anaconda-navigator.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{9c45cc6c-9a6b-4e10-a118-6d9c81f9922a}", | |
"name": "Anaconda Prompt (gis)", | |
"commandline": "cmd.exe /K C:\\apps\\anaconda3\\Scripts\\activate.bat C:\\apps\\anaconda3 ^&^& conda activate gis", | |
"hidden": false, | |
"icon": "c:\\apps\\anaconda3\\Menu\\anaconda-navigator.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{992f0aef-54b7-444e-9a67-8d71471dac0b}", | |
"name": "Cygwin", | |
"commandline" : "C:\\apps\\cygwin\\bin\\bash --login -i", | |
"icon" : "C:\\apps\\cygwin\\Cygwin.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
"hidden": false, | |
"name": "Ubuntu", | |
"source": "Windows.Terminal.Wsl", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"name": "Windows PowerShell", | |
"commandline": "powershell.exe", | |
"hidden": false, | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}", | |
"hidden": false, | |
"name": "Azure Cloud Shell", | |
"source": "Windows.Terminal.Azure", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"name" : "Git Bash", | |
"commandline" : "C:\\apps\\git\\bin\\bash.exe", | |
"icon" : "C:\\apps\\git\\mingw64\\share\\git\\git-for-windows.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "c:\\projects" | |
}, | |
{ | |
"guid": "{024b6bc8-dbca-441d-ad0d-824d60ddf7a4}", | |
"name": "Python REPL (gis)", | |
"commandline": "cmd.exe /K C:\\apps\\anaconda3\\Scripts\\activate.bat C:\\apps\\anaconda3 ^&^& conda activate gis ^&^& python", | |
"hidden": false, | |
"icon": "c:\\apps\\anaconda3\\Menu\\anaconda-navigator.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "%USERPROFILE%" | |
}, | |
{ | |
"guid": "{155d890f-e9af-40ff-a1b7-063c836636cb}", | |
"name": "Python REPL (playground)", | |
"commandline": "cmd.exe /K C:\\apps\\anaconda3\\Scripts\\activate.bat C:\\apps\\anaconda3 ^&^& conda activate playground ^&^& python", | |
"hidden": false, | |
"icon": "c:\\apps\\anaconda3\\Menu\\anaconda-navigator.ico", | |
"fontSize": 10, | |
"colorScheme": "Campbell", | |
"fontFace": "Source Code Pro", | |
"startingDirectory": "%USERPROFILE%" | |
} | |
] | |
}, | |
"schemes": [], | |
"actions": [ | |
{ "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