Skip to content

Instantly share code, notes, and snippets.

@danielotieno
Last active October 16, 2022 07:08
Show Gist options
  • Save danielotieno/c34077b475d2d2762c9f470dfeeda879 to your computer and use it in GitHub Desktop.
Save danielotieno/c34077b475d2d2762c9f470dfeeda879 to your computer and use it in GitHub Desktop.
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html",
"razor": "html",
"plaintext": "jade"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.cursorBlinking": "solid",
"editor.cursorWidth": 5,
"editor.renderWhitespace": "all",
"editor.letterSpacing": 0.5,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"editor.fontSize": 17,
"editor.fontWeight": "400",
"editor.wordWrap": "on",
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.associations": {
"*.sql": "postgres"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"html.format.endWithNewline": true,
"prettier.jsxSingleQuote": true,
"prettier.jsxBracketSameLine": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"prettier.singleQuote": true,
"files.trimTrailingWhitespace": true,
"files.exclude": {
"/.git": true,
"/.DS_Store": true,
"/node_modules": true,
"/node_modules/": true
},
"search.exclude": {
"/node_modules": true
},
"files.watcherExclude": {
"/node_modules/": true
},
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"workbench.editor.tabSizing": "shrink",
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": true,
"workbench.sideBar.location": "left",
"typescript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDelete": false,
"prettier.trailingComma": "all",
"editor.tabCompletion": "on",
"workbench.colorCustomizations": {
"titleBar.activeForeground": "#222",
"titleBar.activeBackground": "#dadada",
"titleBar.inactiveForeground": "#b2b2b3",
"titleBar.inactiveBackground": "#f6f6f6",
"sideBar.border": "#1b2b34",
"activityBar.border": "#1b2b34"
},
"prettier.arrowParens": "always",
"prettier.packageManager": "yarn",
"workbench.iconTheme": "material-icon-theme",
"python.pythonPath": "/usr/bin/python3",
"python.languageServer": "Default",
"autoDocstring.includeExtendedSummary": true,
"jupyter.alwaysTrustNotebooks": true,
"editor.linkedEditing": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"editor.inlineSuggest.enabled": true,
"workbench.colorTheme": "Cobalt2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment