Created
October 24, 2023 09:46
-
-
Save Priler/0e37f10a582c4a9422033ebd1978ef9a to your computer and use it in GitHub Desktop.
VSCode custom settings
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
"files.autoSave": "onFocusChange", | |
"editor.renderWhitespace": "trailing", | |
"editor.wordWrap": "on", | |
"editor.guides.bracketPairs": "active", | |
"editor.smoothScrolling": true, | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.fontLigatures": true, | |
"editor.suggest.preview": true, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"workbench.editor.highlightModifiedTabs": true, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "line", | |
"emmet.triggerExpansionOnTab": true, | |
"extensions.ignoreRecommendations": true, | |
"explorer.compactFolders": false, | |
"workbench.startupEditor": "none", | |
"editor.bracketPairColorization.enabled": true, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": false | |
}, | |
"telemetry.telemetryLevel": "off", | |
"security.workspace.trust.enabled": false, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment