Skip to content

Instantly share code, notes, and snippets.

@artem-bondar
Created November 23, 2019 12:36
Show Gist options
  • Save artem-bondar/9c08f7e62a734f233276f5afe09f3436 to your computer and use it in GitHub Desktop.
Save artem-bondar/9c08f7e62a734f233276f5afe09f3436 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
{
// General
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"extensions.autoUpdate": true,
"window.restoreFullscreen": true,
"breadcrumbs.enabled": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"files.eol": "\n",
"files.autoSave": "afterDelay",
"files.defaultLanguage": "markdown",
// Workbench
"workbench.activityBar.visible": false,
"workbench.panel.defaultLocation": "right",
"workbench.colorTheme": "eppz!",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"editor.background": "#1e1e1e"
},
"eppz-code.disableAnalytics": true,
"material-icon-theme.hidesExplorerArrows": false,
"material-icon-theme.activeIconPack": "none",
// Editor
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.minimap.enabled": false,
"editor.tabCompletion": "on",
"editor.rulers": [
100
],
// Git
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"gitProjectManager.baseProjectsFolders": [
"C:\\Users\\keter\\Repositories"
],
// C#
"csharp.suppressDotnetInstallWarning": true,
"csharp.referencesCodeLens.enabled": false,
// Python
"python.linting.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment