Skip to content

Instantly share code, notes, and snippets.

@alvinthen
Last active February 20, 2018 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alvinthen/7cb44012a94d9b5a2f8159a19d584bc1 to your computer and use it in GitHub Desktop.
Save alvinthen/7cb44012a94d9b5a2f8159a19d584bc1 to your computer and use it in GitHub Desktop.
VSCode config
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.fontWeight": "400",
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "all",
"editor.rulers": [100],
"editor.scrollBeyondLastLine": false,
"editor.tabSize": 2,
"eslint.autoFixOnSave": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
"window.zoomLevel": 0,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontSize": 16,
"search.useIgnoreFilesByDefault": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/build": true,
"**/Frameworks": true,
"**/ios/Pods": true,
"**/buck-out": true,
"**/.gradle": true,
"**/.idea": true
},
"files.trimFinalNewlines": true,
"cSpell.userWords": [
"frontmatter"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment