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/04/27 23:57] Wuffconfig:vscode [2026/06/10 15:56] (current) Wuff
Line 48: Line 48:
 </code> </code>
  
 +===== Codex Rate Limit Plugin =====
  
 https://marketplace.visualstudio.com/items?itemName=xiangz19.codex-ratelimit 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.
 +
 +===== Persistent Conf =====
 +
 +Open Command Palette:
 + Ctrl+Shift+P
 +then:
 + Preferences: Open User Settings (JSON)
 +and paste the settings below.
 +
 +<code>
 +{
 +    "window.restoreWindows": "preserve",
 +    "chat.restoreLastPanelSession": true,
 +    "terminal.integrated.persistentSessionReviveProcess": "onExitAndWindowClose",
 +    "files.hotExit": "onExitAndWindowClose",
 +    "workbench.editor.restoreViewState": true,
 +    "terminal.integrated.enablePersistentSessions": true,
 +    "workbench.colorTheme": "Dark 2026",    
 +}
 +</code>
 +
 +For vscodium-web, to restore project windows/open files etc, link to the exact project file like:
 +https://vscodium-web.example.com/?workspace=/src/projects/something.code-workspace
 +
 +
 +
 +SFTP extension for remote up/download of files:
 +https://marketplace.visualstudio.com/items?itemName=Natizyskunk.sftp
 +example config:
 +<code>
 +{
 +    "name": "remote-name",
 +    "host": "remote-hostname",
 +    "protocol": "sftp",
 +    "port": 22,
 +    "username": "root",
 +    "privateKeyPath": "/home/user/.ssh/id_rsa",
 +    "remotePath": "/var/www/htdocs",
 +    "uploadOnSave": false,
 +    "useTempFile": false,
 +    "openSsh": false
 +}
 +</code>
 +
config/vscode.1777330674.txt.gz · Last modified: by Wuff