Skip to content

Instantly share code, notes, and snippets.

@marismar
Last active July 29, 2021 11:55
Show Gist options
  • Save marismar/227024648cbfc2a30109998e858b3851 to your computer and use it in GitHub Desktop.
Save marismar/227024648cbfc2a30109998e858b3851 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"terminal.integrated.fontSize": 18,
"terminal.integrated.defaultProfile.osx": "/bin/zsh",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.labelFormat": "short",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"typeorm": "database",
"schemas": "class",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"abstracts": "less",
"base": "container",
"features": "content",
"home": "views",
"business": "core",
"exceptions": "error",
"persistence": "database",
"_components": "components",
"_domain": "class",
"_enum": "constant",
"_interfaces": "public",
"_interceptors": "container",
"_utils": "utils",
"_pipes": "pipe",
"_guards": "guard",
"_services": "controller",
"_directives": "custom",
"_mocks": "mock",
"_public": "public",
"_models": "database",
"devel": "core",
"page-objects": "container"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.factory.js": "angular-service",
"*.controller.js": "angular-service",
"app-routing.module.ts": "routing",
"home-routing.module.ts": "routing",
"error-routing.module.ts": "routing"
},
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "never",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.compactFolders": false,
"editor.fontSize": 18,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.lineHeight": 26,
"editor.tabSize": 2,
"editor.rulers": [80, 120],
"editor.suggestSelection": "first",
"editor.renderLineHighlight": "gutter",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript, typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll.stylelint": true
},
"prettier.arrowParens": "avoid",
"prettier.singleQuote": true,
"breadcrumbs.enabled": true,
"screencastMode.onlyKeyboardShortcuts": true,
"git.enableSmartCommit": true,
"terminal.integrated.inheritEnv": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.autoSave": "off",
"material-icon-theme.activeIconPack": "angular",
"editor.renderControlCharacters": false,
"jupyter.addGotoCodeLenses": false,
"jupyter.allowInput": false,
"python.defaultInterpreterPath": "/home/marismar/anaconda3/bin/python",
"editor.linkedEditing": true,
"angular.enable-experimental-ivy-prompt": false,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"jupyter.jupyterServerType": "local",
"window.zoomLevel": 1,
"files.associations": {
"*.js": "javascript"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment