Skip to content

Instantly share code, notes, and snippets.

@BolajiOlajide
Created June 1, 2021 20:17
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 BolajiOlajide/3058bdf413d8b80cab6494982e3adcf3 to your computer and use it in GitHub Desktop.
Save BolajiOlajide/3058bdf413d8b80cab6494982e3adcf3 to your computer and use it in GitHub Desktop.
Proton's 2021 VSCode config (Last Updated: 1st June 2021)
{
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.renderWhitespace": "all",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 14,
"workbench.sideBar.location": "left",
"editor.fontLigatures": true,
"workbench.startupEditor": "none",
"workbench.editor.swipeToNavigate": true,
"gitlens.keymap": "alternate",
"terminal.external.osxExec": "iTerm.app",
"editor.renderIndentGuides": true,
"editor.fontFamily": "Operator Mono",
// "editor.fontFamily": "Hasklig",
"go.formatTool": "gofmt",
"go.lintOnSave": "file",
"go.lintTool": "golint",
"go.lintFlags": [],
"go.autocompleteUnimportedPackages": true,
"explorer.compactFolders": false,
"go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
"go.docsTool": "godoc",
"editor.insertSpaces": true,
"editor.tabSize": 2,
"[go]": {
"editor.snippetSuggestions": "top",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.tabSize": 4,
"editor.insertSpaces": false,
},
"[html]": {
"editor.tabSize": 4
},
"[python]": {
"editor.tabSize": 4,
"editor.defaultFormatter": "joslarson.black-vscode"
},
"[javascript]": {
"editor.tabSize": 2
},
"files.associations": {
"*.md": "mdx"
},
"editor.wordWrap": "off",
"python.formatting.provider": "none",
"javascript.updateImportsOnFileMove.enabled": "never",
"mocha.logVerbose": true,
"mocha.showInExplorer": true,
"mssql.connections": [
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": "{{put-password-here}}"
}
],
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"python.pythonPath": "/usr/bin/python3",
"go.toolsManagement.autoUpdate": true,
"window.zoomLevel": 1,
"workbench.productIconTheme": "fluent-icons",
"workbench.colorTheme": "Halcyon"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment