Skip to content

Instantly share code, notes, and snippets.

@kovalbogdan95
Last active April 12, 2020 21:14
Show Gist options
  • Save kovalbogdan95/f443cee3e2c3dea3e56b009cdf65df30 to your computer and use it in GitHub Desktop.
Save kovalbogdan95/f443cee3e2c3dea3e56b009cdf65df30 to your computer and use it in GitHub Desktop.
Config for vscode
// Install GitLens
// Ctrl + P
// ext install eamodio.gitlens
// https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens
{
"editor.fontSize": 16,
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.wordWrap": "on",
"editor.tabCompletion": "on",
"editor.letterSpacing": 0,
"editor.minimap.showSlider": "mouseover",
"editor.quickSuggestionsDelay": 5,
"editor.formatOnPaste": true,
"editor.cursorBlinking": "phase",
"editor.cursorStyle": "block",
"editor.renderLineHighlight": "line",
"workbench.editor.tabCloseButton": "off",
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": true,
"workbench.startupEditor": "none",
"workbench.colorTheme": "Monokai",
"window.menuBarVisibility": "toggle",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"files.defaultLanguage": "python",
"zenMode.hideTabs": false,
"zenMode.hideStatusBar": false,
"zenMode.hideActivityBar": false,
"explorer.sortOrder": "type",
"debug.inlineValues": true,
"extensions.ignoreRecommendations": true,
"terminal.external.osxExec": "Terminal.app",
"terminal.external.linuxExec": "gnome-terminal",
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.scrollback": 5000,
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment