Skip to content

Instantly share code, notes, and snippets.

View atulkumar2's full-sized avatar

Atul Kumar atulkumar2

  • Freelance
  • Bangalore
View GitHub Profile
@guimondmm
guimondmm / Anaconda PowerShell Prompt in Windows Terminal settings.json
Last active November 12, 2024 12:53
Add an "Anaconda PowerShell Prompt" profile to Windows Terminal. Just paste it in your settings.json file.
{
"colorScheme": "Campbell",
"commandline": "pwsh.exe -ExecutionPolicy ByPass -NoExit -Command \"& '%USERPROFILE%\\anaconda3\\shell\\condabin\\conda-hook.ps1' ; conda activate '%USERPROFILE%\\anaconda3' \"",
"guid": "{e7d34d61-5a57-4f38-8eab-91cb777b0c26}",
"hidden": false,
"icon": "%USERPROFILE%\\anaconda3\\Menu\\anaconda-navigator.ico",
"name": "Anaconda PowerShell Prompt",
"startingDirectory": "%USERPROFILE%"
}