Last active
July 23, 2025 00:30
-
-
Save chris-gong/e1ba18c6281be1eeeb9f16ec20bd6f4e to your computer and use it in GitHub Desktop.
Settings for Visual Studio Code for Unreal Engine projects. If you have suggestions, please comment them down below
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
| { | |
| "window.zoomLevel": 2, | |
| "files.autoSave": "afterDelay", | |
| "files.autoSaveDelay": 1000, | |
| "editor.formatOnSave": true, | |
| "editor.wordWrap": "on", | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.inlayHints.enabled": "on", | |
| "breadcrumbs.enabled": true, | |
| "C_Cpp.workspaceParsingPriority": "highest", | |
| "C_Cpp.codeAnalysis.clangTidy.enabled": true, | |
| "C_Cpp.codeAnalysis.runAutomatically": true, | |
| "files.watcherExclude": { | |
| "**/Binaries/**": true, | |
| "**/Intermediate/**": true, | |
| "**/Saved/**": true | |
| }, | |
| "search.exclude": { | |
| "**/Binaries/**": true, | |
| "**/Intermediate/**": true, | |
| "**/Saved/**": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment