Skip to content

Instantly share code, notes, and snippets.

@jda0
Last active September 8, 2021 18: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 jda0/e8237db585c50ca9eee0d4c27d2d7e67 to your computer and use it in GitHub Desktop.
Save jda0/e8237db585c50ca9eee0d4c27d2d7e67 to your computer and use it in GitHub Desktop.
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.pylint": true,
},
"editor.dragAndDrop": true,
"editor.fontFamily": "Jetbrains Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 13,
"editor.letterSpacing": 0.25,
"editor.lineHeight": 15.6,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "selection",
"editor.rulers": [80, 88, 100],
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"editor.wrappingIndent": "deepIndent",
"explorer.confirmDragAndDrop": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.classpath": true,
"**/.DS_Store": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/CVS": true,
},
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.fetchOnPull": true,
"terminal.integrated.fontFamily": "JetBrains Mono, Menlo, Monaco, 'Courier New', monospace",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.scrollback": 8192,
"terminal.integrated.shell.osx": "/bin/bash",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.clickThroughInactive": false,
"window.zoomLevel": -1,
"workbench.colorTheme": "Roseate",
"workbench.colorCustomizations": {
"[Roseate]": {
"activityBar.background": "#444051",
"titleBar.activeBackground": "#484051",
},
"[Dark Purple - Webstorm]": {
"editorIndentGuide.activeBackground": "#000",
"editorIndentGuide.background": "#0004",
"editorRuler.foreground": "#0004"
}
},
"workbench.editorAssociations": [
{
"viewType": "jupyter-notebook",
"filenamePattern": "*.ipynb"
}
],
"workbench.settings.editor": "json",
"workbench.settings.useSplitJSON": true,
"workbench.sideBar.location": "right",
// Extensions
"docker.containers.label": "ContainerName",
"eslint.run": "onSave",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"gitlens.codeLens.recentChange.command": "gitlens.showQuickCommitDetails",
"gitlens.codeLens.scopes": [
"document",
"blocks",
"containers"
],
"gitlens.defaultTimeFormat": null,
"gitlens.keymap": "alternate",
"jest.autoRun": "off",
"parameterHints.enabled": false,
// Languages
"javascript.format.insertSpaceAfterConstructor": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"javascript.referencesCodeLens.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"js/ts.implicitProjectConfig.checkJs": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.formatting.provider": "black",
"python.insidersChannel": "weekly",
"python.languageServer": "Pylance",
"python.pythonPath": "/Users/jamesdaly/.pyenv/shims/python",
"python.showStartPage": false,
"python.sortImports.args": [
"--profile", "black"
],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.tabSize": 4
},
"typescript.format.insertSpaceAfterConstructor": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment