Skip to content

Instantly share code, notes, and snippets.

@kissarat
Created May 17, 2022 11:10
Show Gist options
  • Save kissarat/5a28261bdb7dc943f74ef6b2d4af85a1 to your computer and use it in GitHub Desktop.
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
{
"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