Created
February 4, 2024 18:45
-
-
Save lumiobrie/82d17202e1f69ccf3bbeaa4887cdf559 to your computer and use it in GitHub Desktop.
Essential VSCode configuration.
This file contains 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
Show hidden characters
/* Requires this extensions: | |
* Material Icon Theme - Philipp Kief | |
* Prettier - Prettier | |
* Rainglow - Dayle Rees | |
*/ | |
{ | |
"workbench.sideBar.location": "right", | |
"editor.linkedEditing": true, | |
"editor.guides.bracketPairs": true, | |
"editor.stickyScroll.enabled": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"files.autoSave": "afterDelay", | |
"editor.formatOnSave": true, | |
"editor.fontFamily": "'CaskaydiaCove Nerd Font', Consolas, 'Courier New', monospace", | |
"terminal.integrated.defaultProfile.windows": "PowerShell", | |
"git.autofetch": true, | |
"editor.tabSize": 2, | |
"security.workspace.trust.untrustedFiles": "open", | |
"workbench.colorTheme": "Hub Contrast (rainglow)", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment