Last active
June 14, 2020 11:04
-
-
Save dimaskiddo/7502c987ec4d8f31017042472ab0d150 to your computer and use it in GitHub Desktop.
My Visual Studio Code Customization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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