Last active
July 23, 2018 15:38
-
-
Save iporsut/122c3b07f6a7f2d74be28b7dde4fa1ac to your computer and use it in GitHub Desktop.
Visual Studio Code user settings
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
| { | |
| // Controls the font size in pixels. | |
| "editor.fontSize": 17, | |
| // Controls the font family. | |
| "editor.fontFamily": "Go Mono, Menlo, Monaco, 'Courier New', monospace", | |
| // The number of spaces a tab is equal to. This setting is overridden based on the file contents when `editor.detectIndentation` is on. | |
| "editor.tabSize": 8, | |
| // Controls whether the editor should render indent guides | |
| "editor.renderIndentGuides": false, | |
| // Controls if opened editors from Quick Open show as preview. Preview editors are reused until they are kept (e.g. via double click or editing). | |
| "workbench.editor.enablePreviewFromQuickOpen": false, | |
| // Controls if opened editors show as preview. Preview editors are reused until they are kept (e.g. via double click or editing) and show up with an italic font style. | |
| "workbench.editor.enablePreview": false, | |
| // Controls the font size in pixels of the terminal. | |
| "terminal.integrated.fontSize": 17, | |
| // Controls whether the editor should highlight similar matches to the selection | |
| "editor.selectionHighlight": false, | |
| // Controls how the editor should render the current line highlight, possibilities are 'none', 'gutter', 'line', and 'all'. | |
| "editor.renderLineHighlight": "none", | |
| // Controls how to open items in trees and lists using the mouse (if supported). Set to `singleClick` to open items with a single mouse click and `doubleClick` to only open via mouse double click. For parents with children in trees, this setting will control if a single click expands the parent or a double click. Note that some trees and lists might choose to ignore this setting if it is not applicable. | |
| "workbench.list.openMode": "doubleClick", | |
| // Controls if the minimap is shown | |
| "editor.minimap.enabled": false, | |
| // Controls the visibility of the activity bar in the workbench. | |
| "workbench.activityBar.visible": false, | |
| // Overrides colors from the currently selected color theme. | |
| "workbench.colorCustomizations": { | |
| "statusBar.background" : "#1A1A1A", | |
| }, | |
| // Controls if the hover is shown | |
| "editor.hover.enabled": false, | |
| // Show fullpath or relative path in status bar. | |
| "ActiveFileInStatusBar.fullpath": false, | |
| // Lints code on file save using the configured Lint tool. Options are 'workspace', 'package' or 'off'. | |
| "go.lintOnSave": "off", | |
| // Controls the cursor style, accepted values are 'block', 'block-outline', 'line', 'line-thin', 'underline' and 'underline-thin' | |
| "editor.cursorStyle": "block", | |
| // Control the cursor animation style, accepted values are 'blink', 'smooth', 'phase', 'expand' and 'solid' | |
| "editor.cursorBlinking": "solid", | |
| // When enabled, insert a final new line at the end of the file when saving it. | |
| "files.insertFinalNewline": true, | |
| // Controls how lines should wrap. Can be: | |
| // - 'off' (disable wrapping), | |
| // - 'on' (viewport wrapping), | |
| // - 'wordWrapColumn' (wrap at `editor.wordWrapColumn`) or | |
| // - 'bounded' (wrap at minimum of viewport and `editor.wordWrapColumn`). | |
| "editor.wordWrap": "on", | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment