Skip to content

Instantly share code, notes, and snippets.

@dimaskiddo
Last active June 14, 2020 11:04
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 dimaskiddo/7502c987ec4d8f31017042472ab0d150 to your computer and use it in GitHub Desktop.
Save dimaskiddo/7502c987ec4d8f31017042472ab0d150 to your computer and use it in GitHub Desktop.
My Visual Studio Code Customization
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 13,
"editor.fontFamily": "Consolas",
"editor.lineHeight": 26,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.minimap.enabled": true,
"editor.snippetSuggestions": "top",
"files.eol": "\n",
"terminal.integrated.fontFamily": "Consolas",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.25,
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": -0.5,
"extensions.autoUpdate": false,
"extensions.autoCheckUpdates": false,
"extensions.ignoreRecommendations": true,
"update.mode": "none",
"update.enableWindowsBackgroundUpdates": false,
"[go]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
},
"go.inferGopath": true,
"go.toolsGopath": "C:\\Go-Tools\\",
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\wsl.exe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment