Skip to content

Instantly share code, notes, and snippets.

@davidalves1
Last active March 23, 2024 11:47
Show Gist options
  • Save davidalves1/eb37225331b7a2d5641e485dad6884b0 to your computer and use it in GitHub Desktop.
Save davidalves1/eb37225331b7a2d5641e485dad6884b0 to your computer and use it in GitHub Desktop.
My VSCode configuration
{
"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