Skip to content

Instantly share code, notes, and snippets.

@larsroettig
Created November 9, 2020 06:52
Show Gist options
  • Save larsroettig/db38436954eb50567caa5bb6cfe5cec4 to your computer and use it in GitHub Desktop.
Save larsroettig/db38436954eb50567caa5bb6cfe5cec4 to your computer and use it in GitHub Desktop.
{
"editor.formatOnSave": true,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
"beautify.onSave": true,
// You can auto format any files based on the file extensions type.
"beautify.JSfiles": [
"js",
"json",
"jsbeautifyrc",
"jshintrc",
"ts"
],
"javascript.validate.enable": false,
"workbench.editor.enablePreview": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.trailingComma": "all",
"bracketPairColorizer.forceIterationColorCycle": true,
"editor.fontWeight": "500",
"editor.fontLigatures": true,
"editor.letterSpacing": 0.5,
"editor.cursorWidth": 5,
"editor.renderWhitespace": "all",
"editor.snippetSuggestions": "top",
"editor.glyphMargin": true,
"editor.minimap.enabled": false,
"terminal.integrated.fontWeight": "400",
"editor.fontFamily": "Dank Mono",
"editor.fontSize": 14,
"window.zoomLevel": 2,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"workbench.fontAliasing": "auto",
"terminal.integrated.macOptionIsMeta": true,
"prettier.bracketSpacing": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeightBold": "700",
"terminal.integrated.lineHeight": 1.6,
// SOP's Import Cost Extension Settings.
"importCost.largePackageColor": "#EC3A37F5",
"importCost.mediumPackageColor": "#B362FF",
"importCost.smallPackageColor": "#B362FF",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.autoSave": "afterDelay",
"editor.formatOnPaste": true,
"files.autoSaveDelay": 100,
"workbench.colorTheme": "Palenight Theme",
"workbench.iconTheme": "eq-material-theme-icons-palenight",
"editor.rulers": [
80
],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.typescriptEnable": [
"typescript",
"typescriptreact"
],
"launch": {
"configurations": [],
"compounds": []
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment