Last active
February 23, 2025 05:11
-
-
Save at-the-vr/469c65eab7a3de2e58e9b58f7357c933 to your computer and use it in GitHub Desktop.
MY VSCode 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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "Houston", | |
"editor.fontSize": 17, | |
"terminal.integrated.fontSize": 16, | |
"terminal.integrated.fontFamily": "MesloLGM Nerd Font, 'Courier New', monospace", | |
"editor.minimap.renderCharacters": false, | |
"editor.minimap.autohide": true, | |
"editor.rulers": [80], | |
"editor.fontFamily": "Cascadia Code, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.mouseWheelZoom": true, | |
"editor.wordWrap": "on", | |
"editor.cursorBlinking": "phase", | |
"gitlens.defaultGravatarsStyle": "wavatar", | |
"editor.guides.bracketPairs": "active", | |
"remote.SSH.defaultExtensions": ["gitpod.gitpod-remote-ssh"], | |
"explorer.compactFolders": false, | |
"workbench.layoutControl.enabled": false, | |
"window.commandCenter": false, | |
"editor.stickyScroll.enabled": false, | |
"prettier.documentSelectors": ["**/*.astro"], | |
"[astro]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"mdx.validate.validateFileLinks": "ignore", | |
"editor.renderWhitespace": "none", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"mdx.validate.validateReferences": "ignore", | |
"remote.SSH.remotePlatform": { | |
"withastro-docs-rk5i9bfh953.vss.gitpod.io": "linux", | |
"*.gitpod.io": "linux" | |
}, | |
"liveSassCompile.settings.showOutputWindowOn": "Warning", | |
"svg.preview.mode": "svg", | |
"workbench.sideBar.location": "right", | |
"editor.linkedEditing": true, | |
"window.newWindowDimensions": "maximized", | |
"todohighlight.isEnable": true, | |
"window.menuBarVisibility": "compact", | |
"tabnine.experimentalAutoImports": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"settingsSync.ignoredSettings": [], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment