Created
May 17, 2022 11:10
-
-
Save kissarat/5a28261bdb7dc943f74ef6b2d4af85a1 to your computer and use it in GitHub Desktop.
Visual Studio Code settings located in .vscode/settings.json in a project or in user settings
This file contains 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
{ | |
"editor.fontSize": 13, | |
"editor.formatOnSave": true, | |
"editor.rulers": [ | |
100 | |
], | |
"emmet.excludeLanguages": [ | |
"markdown" | |
], | |
"files.autoSave": "onFocusChange", | |
"files.encoding": "utf8", | |
"files.eol": "\n", | |
"files.exclude": { | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"__MACOSX": true | |
}, | |
"files.insertFinalNewline": true, | |
"files.maxMemoryForLargeFilesMB": 4, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true | |
}, | |
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}", | |
"files.associations": { | |
"*.ttml": "xml", | |
"*.ttss": "css" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment