User Tools

Site Tools


config:vscode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
config:vscode [2026/01/23 10:42] Wuffconfig:vscode [2026/04/28 00:03] (current) Wuff
Line 25: Line 25:
 </code> </code>
  
-Disable the internal AI features: +Disable the internal AI features and telemetry
-Settings -> Chat -> Disable AI Features+  Settings -> Chat -> Disable AI Features 
 +  * Settings -> telemetry.telemetryLevel -> Off 
 +  * Settings -> application -> update -> update:mode -> None (as updated through apt) 
  
 Marketplace addons/plugins/extensions: Marketplace addons/plugins/extensions:
   * install "openai codex", "git graph" and "python"   * install "openai codex", "git graph" and "python"
 +  * SQLite Viewer & SQLite https://marketplace.visualstudio.com/items?itemName=alexcvzz.vscode-sqlite (sudo apt install sqlite3)
   * move codex icon to right sidebar   * move codex icon to right sidebar
  
 +Keyboard shortcut changes (CTRL+K CTRL+S):
 +  * Copy Line Down -> CTRL + D
 +
 +
 +Note: To authenticate the ChatGPT/Codex plugin within VS Code Server docker image, the following needs to be done on the docker main system. The codex binary is in the plugin version's directory and vscode runs under user abc. For this to work, the device auth needs to be enabled in chatgpt codex security settings:
 +<code>
 +docker exec -it -u abc vscode sh -lc '
 +CODEX_BIN="$(find /config/extensions -path "*/bin/linux-x86_64/codex" | head -n1)"
 +"$CODEX_BIN" login --device-auth
 +'
 +</code>
 +
 +===== Codex Rate Limit Plugin =====
  
 +https://marketplace.visualstudio.com/items?itemName=xiangz19.codex-ratelimit
 +install from top toolbar:
 +<code>
 +ext install xiangz19.codex-ratelimit
 +</code>
 +Set refresh to 60 seconds. Default is 10 seconds.
config/vscode.1769164946.txt.gz · Last modified: by Wuff