Skip to content

Instantly share code, notes, and snippets.

@hiroaki-yamamoto
Last active January 9, 2020 00:08
Show Gist options
  • Save hiroaki-yamamoto/42a185c880db2d6532691efbcdc26068 to your computer and use it in GitHub Desktop.
Save hiroaki-yamamoto/42a185c880db2d6532691efbcdc26068 to your computer and use it in GitHub Desktop.
My vscode's settings.json
{
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "One Dark Pro",
"editor.fontSize": 12,
"editor.rulers": [80],
"editor.tabSize": 2,
"[python]": {
"editor.tabSize": 4
},
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"trailing-spaces.trimOnSave": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.fontFamily": "'Fira Code', 'Source Code Pro', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.renderControlCharacters": true,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"breadcrumbs.enabled": true,
"search.showLineNumbers": true,
"search.smartCase": true,
"editor.renderWhitespace": "all",
"workbench.editor.showTabs": true,
"workbench.iconTheme": "vscode-icons",
"vsicons.projectDetection.autoReload": true,
"go.useLanguageServer": true,
"go.alternateTools": {
"go-langserver": "gopls"
},
"go.languageServerExperimentalFeatures": {
"format": true,
"diagnostics": true,
"documentLink": true
},
"go.toolsEnvVars": {"GO111MODULE": "on"},
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true
},
"window.zoomLevel": 0,
"editor.fontLigatures": true,
"gitlens.codeLens.enabled": false,
"vsicons.dontShowNewVersionMessage": true,
"go.formatTool": "goimports"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment