Created
March 24, 2025 20:00
-
-
Save adamhill/a584dffc61c4ad66423bf67904a53c95 to your computer and use it in GitHub Desktop.
vscode-diff-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
`{ | |
"type": "setting", | |
"description": "Enable the minimap to show change indicators alongside your code.", | |
"details": { | |
"key": "editor.minimap.enabled", | |
"value": true | |
} | |
}, | |
{ | |
"type": "setting", | |
"description": "Show Git decorations in editors, file explorer, and other UI elements.", | |
"details": { | |
"key": "git.decorations.enabled", | |
"value": true | |
} | |
}, | |
{ | |
"type": "setting", | |
"description": "Configure the diff editor to show changes side by side for better visualization.", | |
"details": { | |
"key": "diffEditor.renderSideBySide", | |
"value": true | |
} | |
}, | |
{ | |
"type": "setting", | |
"description": "Enable CodeLens in diff views for additional context about changes.", | |
"details": { | |
"key": "diffEditor.codeLens", | |
"value": true | |
} | |
}, | |
{ | |
"type": "setting", | |
"description": "Show line changes in the editor gutter (left margin).", | |
"details": { | |
"key": "scm.diffDecorations", | |
"value": "all" | |
} | |
}, | |
{ | |
"type": "setting", | |
"description": "Control the visibility of diff decorations in the gutter.", | |
"details": { | |
"key": "scm.diffDecorationsGutterVisibility", | |
"value": "always" | |
} | |
}, | |
{ | |
"type": "command", | |
"description": "Use the **Toggle Minimap** command to show or hide the minimap if needed.", | |
"details": { | |
"key": "editor.action.toggleMinimap" | |
} | |
}, | |
{ | |
"type": "command", | |
"description": "Use the **Show Changes** command to open the Source Control view and see all changes.", | |
"details": { | |
"key": "workbench.view.scm" | |
} | |
} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment