Skip to content

Instantly share code, notes, and snippets.

@vampirepapi
Last active December 1, 2023 15:03
Show Gist options
  • Save vampirepapi/6223219dd3d75e072bc5e77f1eb0c71a to your computer and use it in GitHub Desktop.
Save vampirepapi/6223219dd3d75e072bc5e77f1eb0c71a to your computer and use it in GitHub Desktop.
VSCode - settings.json ext java version + background
{
"workbench.colorTheme": "Catppuccin Macchiato",
"background.fullscreen": {
"images": ["file:///C:/Sakura_Nene_CPP.jpg"], // urls of your images
"opacity": 0.90, // 0.85 ~ 0.95 recommended
"size": "cover", // also css, `cover` to self-adaption (recommended),or `contain`、`200px 200px`
"position": "center", // alias to `background-position`, default `center`
"interval": 0 // seconds of interval for carousel, default `0` to disabled.
},
"redhat.telemetry.enabled": true,
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "C:\\Program Files\\Java\\jdk1.8.0_202",
"default": true
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment