Last active
April 12, 2020 21:14
-
-
Save kovalbogdan95/f443cee3e2c3dea3e56b009cdf65df30 to your computer and use it in GitHub Desktop.
Config for vscode
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
| // 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