Last active
March 23, 2024 11:47
-
-
Save davidalves1/eb37225331b7a2d5641e485dad6884b0 to your computer and use it in GitHub Desktop.
My 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
{ | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.fontFamily": "'Fira Code', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": true, | |
"editor.suggestSelection": "first", | |
"editor.rulers": [100], | |
"explorer.compactFolders": false, | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true, | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/public/**": true, | |
"**/node_modules": true, | |
"**/dist/**": true | |
}, | |
"git.suggestSmartCommit": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true | |
}, | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Dracula Soft", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.codeActionsOnSave": { | |
"source.fixAll": "always" | |
} | |
// "[vue]": { | |
// "editor.defaultFormatter": "octref.vetur" | |
// }, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment