Replies: 2 comments 1 reply
|
Hmm... Have you tried going to the |
1 reply
|
System-wide default settings are tracked by microsoft/vscode#27972. There is as of very recently system-wide mandatory settings though, which are called Policy settings, see https://code.visualstudio.com/docs/configure/settings#_settings-precedence. I was on the lookout for system-wide default settings specifically, which still isn't around. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi everyone,
Is there any way to customize default VSCode settings when code-server is launched?
Initially I thought I could use
code-server --config config.jsonbut this config should be YAML and affects only code-server itself not the underlying VSCode.I'm trying to setup a JupyterHub VSCode using dirkcgrunwald/jupyter_codeserver_proxy and I would like to have some settings using different defaults.
For instance:
{ "terminal.integrated.gpuAcceleration": "canvas" }to avoid some terminal rendering issues.
Is there any way to do this without forcing the setting into the user's
~/.local/share/code-server/User/settings.jsonfile?We'd like to set these as defaults but still allow the user to override it if they modify their settings.
Thanks!
All reactions