Last active
August 21, 2024 17:19
-
-
Save leonardoraele/ffd09ca6673de6053a4fe688fb32e8a9 to your computer and use it in GitHub Desktop.
My personal VSCode settings (for backup and reference purposes)
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
| // ## User Settings | |
| // Open with command: "> Open User Settings" | |
| // File location (Windows): %APPDATA%\Code\User\settings.json | |
| // File location (macOS): $HOME/Library/Application\ Support/Code/User/settings.json | |
| // File location (Linux): $HOME/.config/Code/User/settings.json | |
| // ## Project settings | |
| // Open with command: "> Open Workspace Setings" | |
| // File location: ${workspaceFolder}/.vscode/settings.json | |
| { | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.insertSpaces": false, | |
| "editor.minimap.enabled": false, | |
| "editor.mouseWheelScrollSensitivity": 1.5, | |
| "editor.rulers": [80, 120], | |
| "editor.tabSize": 4, | |
| "editor.wordWrap": "off", | |
| "debug.javascript.autoAttachFilter": "disabled", | |
| "diffEditor.renderSideBySide": false, | |
| "github.copilot.editor.enableAutoCompletions": true, | |
| "gitlens.currentLine.enabled": false, | |
| "gitlens.hovers.currentLine.enabled": false, | |
| "gitlens.hovers.currentLine.over": "line", | |
| "gitlens.statusBar.enabled": false, | |
| "files.autoSave": "afterDelay", | |
| "files.autoSaveDelay": 100, | |
| "files.eol": "\n", | |
| "files.trimTrailingWhitespace": true, | |
| "svg.preview.mode": "svg", | |
| "terminal.integrated.enableMultiLinePasteWarning": "never", | |
| "workbench.tree.indent": 20, | |
| // Language-specific settings | |
| // "[js]": { | |
| // } | |
| // "[csharp]": { | |
| // }, | |
| // "[markdown]": { | |
| // }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment