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/28 00:03] Wuffconfig:vscode [2026/06/10 15:56] (current) Wuff
Line 56: Line 56:
 </code> </code>
 Set refresh to 60 seconds. Default is 10 seconds. 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.1777331017.txt.gz · Last modified: by Wuff