Last active
April 14, 2025 22:23
-
-
Save hexnickk/42babdedab28af00c1c54ed6f7ded15f to your computer and use it in GitHub Desktop.
settings.json
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
| { | |
| "git.confirmSync": false, | |
| "git.autofetch": false, | |
| "git.enableSmartCommit": true, | |
| // "git.enableCommitSigning": true, | |
| "editor.showFoldingControls": "never", | |
| "editor.minimap.enabled": false, | |
| "editor.fontFamily": "Jetbrains Mono, Menlo, Monaco, 'Courier New', monospace", | |
| "editor.fontSize": 14, | |
| "editor.tabSize": 2, | |
| "editor.fontLigatures": true, | |
| "editor.unicodeHighlight.includeStrings": false, | |
| "editor.wordWrap": "on", | |
| "editor.stickyScroll.enabled": false, | |
| "editor.inlayHints.enabled": "off", | |
| "editor.lineNumbers": "relative", | |
| "editor.codeLens": false, | |
| "extensions.ignoreRecommendations": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "javascript.preferences.importModuleSpecifierEnding": "js", | |
| "window.commandCenter": false, | |
| "window.density.editorTabHeight": "compact", | |
| "terminal.integrated.macOptionIsMeta": true, | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "files.insertFinalNewline": true, | |
| "files.associations": { | |
| "*.liquid": "html" | |
| }, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.compactFolders": false, | |
| "chat.editing.confirmEditRequestRetry": false, | |
| "workbench.activityBar.location": "top", | |
| "workbench.editorAssociations": { | |
| "*.copilotmd": "vscode.markdown.preview.editor", | |
| "*.pdf": "default" | |
| }, | |
| "workbench.colorTheme": "GitHub Dark", | |
| "workbench.tips.enabled": false, | |
| "breadcrumbs.enabled": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment