Created
October 11, 2024 18:25
-
-
Save fogrew/10b3b3a7d8f95a929a1e24c1db6a8d46 to your computer and use it in GitHub Desktop.
My VS Code 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
| { | |
| "window.autoDetectColorScheme": true, | |
| "editor.fontSize": 14, | |
| "editor.guides.bracketPairs": "active", | |
| "editor.renderWhitespace": "all", | |
| "editor.detectIndentation": true, | |
| "editor.wordWrap": "bounded", | |
| "editor.minimap.enabled": false, | |
| "workbench.preferredDarkColorTheme": "GitHub Dark Default", | |
| "workbench.preferredLightColorTheme": "GitHub Light Default", | |
| "workbench.colorTheme": "GitHub Light Default", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "color-highlight.markerType": "foreground", | |
| "editor.linkedEditing": true, | |
| "editor.rulers": [ | |
| {"column": 80, "color": "#5a5a5a15"}, | |
| {"column": 100, "color": "#5a5a5a25"}, | |
| {"column": 120, "color": "#5a5a5a50"} | |
| ], | |
| "editor.wordWrapColumn": 120, | |
| "gitlens.heatmap.locations": [ | |
| "line", | |
| "gutter" | |
| ], | |
| "gitlens.blame.highlight.locations": [ | |
| "overview", | |
| "line", | |
| "gutter" | |
| ], | |
| "gitlens.views.patchDetails.files.layout": "tree", | |
| "workbench.editorAssociations": { | |
| "{git,gitlens}:/**/*.{md,csv,svg}": "default" | |
| }, | |
| "git.autofetch": true, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.DS_Store": true, | |
| "**/.history": true | |
| }, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/.history": true, | |
| "**/.angular": true, | |
| "**/.git": true, | |
| "**/public": true, | |
| "**/dist": true | |
| }, | |
| "diffEditor.experimental.showMoves": true, | |
| "workbench.editor.enablePreviewFromCodeNavigation": true, | |
| "workbench.editor.enablePreviewFromQuickOpen": true, | |
| "githubPullRequests.pullBranch": "never", | |
| "gitlens.codeLens.enabled": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment