Skip to content

Instantly share code, notes, and snippets.

@nathanic
Last active March 4, 2026 23:09
Show Gist options
  • Select an option

  • Save nathanic/583400a552cd91329e234ea566fb63ab to your computer and use it in GitHub Desktop.

Select an option

Save nathanic/583400a552cd91329e234ea566fb63ab to your computer and use it in GitHub Desktop.
  1. Open VS Code
  2. Press ctrl+shift+P and start typing "user settings json".
  3. Choose the "Preferences: User Settings (JSON)" option.
  4. Paste the following content in as a top level key in the json:
"claudeCode.environmentVariables": [
  { "name": "ANTHROPIC_AUTH_TOKEN",              "value": "sk-your-key" },
  { "name": "ANTHROPIC_BASE_URL",                "value": "https://llm-proxy.apps.paas02-t.ilstu.edu/" },
  { "name": "CLAUDE_CODE_USE_BEDROCK",           "value": "0" },
  { "name": "CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS", "value": "1" },
  { "name": "ANTHROPIC_MODEL",                   "value": "deepseek-3.2" },
  { "name": "ANTHROPIC_DEFAULT_SONNET_MODEL",    "value": "deepseek-3.2" },
  { "name": "ANTHROPIC_DEFAULT_HAIKU_MODEL",     "value": "claude-haiku-4-5" }
]
  1. Then, update the key to match your actual API key.
  2. Make sure you don't have any comma issues in the json and restart VS Code.
  3. Install Claude Code for VS Code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment