Skip to content

Instantly share code, notes, and snippets.

@JonathRocha
Created July 28, 2020 23:03
Show Gist options
  • Save JonathRocha/412ddb8a22781ba31b94ea7a4e9a7201 to your computer and use it in GitHub Desktop.
Save JonathRocha/412ddb8a22781ba31b94ea7a4e9a7201 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.terminalAuthentication": false,
"git.gitAuthentication": false,
"git.decorations.enabled": false,
"git.enableSmartCommit": true,
"prettier.tabWidth": 4,
"prettier.singleQuote": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.shell.linux": "/bin/zsh",
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 16,
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
"workbench.colorTheme": "Omni",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 26,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"editor.renderLineHighlight": "gutter",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true
},
"explorer.compactFolders": false,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
// "editor.rulers": [80, 120],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"window.zoomLevel": 0,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"liveshare.featureSet": "insiders",
"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"screencastMode.onlyKeyboardShortcuts": true,
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d"
},
"material-icon-theme.activeIconPack": "react_redux"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment