Last active
December 1, 2023 15:03
-
-
Save vampirepapi/6223219dd3d75e072bc5e77f1eb0c71a to your computer and use it in GitHub Desktop.
VSCode - settings.json ext java version + background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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