Skip to content

Instantly share code, notes, and snippets.

@ironcladlou
Created February 15, 2018 14:18
Show Gist options
  • Save ironcladlou/74e88f2a0a07f741e28fdd014c73db3a to your computer and use it in GitHub Desktop.
Save ironcladlou/74e88f2a0a07f741e28fdd014c73db3a to your computer and use it in GitHub Desktop.
VSCode User Settings
// Place your settings in this file to overwrite the default settings
{
"window.newWindowDimensions": "maximized",
"editor.fontFamily": "Monaco",
"editor.fontSize": 14,
"editor.tabSize": 2,
"files.autoSave": "off",
"editor.selectionHighlight": false,
"editor.quickSuggestions": false,
"editor.suggestOnTriggerCharacters": false,
"editor.rulers": [],
"editor.mouseWheelZoom": false,
"explorer.autoReveal": false,
// Go stuff
"go.buildOnSave": "off",
"go.lintOnSave": "off",
"go.vetOnSave": "off",
"go.buildFlags": [],
"go.lintFlags": [],
"go.vetFlags": ["-shadow", "-shadowstrict"],
"go.formatTool": "goimports",
"go.useCodeSnippetsOnFunctionSuggest": false,
"ActiveFileInStatusBar.fullpath": false,
"workbench.activityBar.visible": false,
"window.zoomLevel": 0,
"workbench.colorTheme": "Monokai Dark Soda",
"editor.renderWhitespace": "none",
"editor.cursorBlinking": "solid",
"window.nativeTabs": false,
"terminal.integrated.fontFamily": "Monaco",
"terminal.integrated.fontSize": 13,
"editor.codeLens": false,
"files.associations": {
"Vagrantfile": "ruby"
},
"editor.minimap.enabled": false,
"python.disablePromptForFeatures": [
"pylint"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment