Skip to content

Instantly share code, notes, and snippets.

@bkanhu
Created May 25, 2021 19:16
Show Gist options
  • Save bkanhu/ef7167a4074fa066b64e556bcc35a78a to your computer and use it in GitHub Desktop.
Save bkanhu/ef7167a4074fa066b64e556bcc35a78a to your computer and use it in GitHub Desktop.
My VS Code Settings 2021
{
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.donotShowInfoMsg": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"liveSassCompile.settings.formats": [{
"format": "expanded",
"extensionName": ".css",
"savePath": "assets/css"
}
],
"liveSassCompile.settings.autoprefix": [],
"[php]": {
"editor.defaultFormatter": "kokororin.vscode-phpfmt"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveSassCompile.settings.excludeList": [
"**/node_modules/**",
".vscode/**"
],
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"editor.fontSize": 14,
"terminal.integrated.fontSize":12,
"editor.wordWrapColumn": 10,
"editor.wordWrap": "on",
"workbench.colorTheme": "Holi Theme",
"prettier.singleQuote":true,
"editor.formatOnSave":true,
"terminal.integrated.defaultProfile.windows": "Git Bash"
}
@bkanhu
Copy link
Author

bkanhu commented Oct 8, 2022

{
"liveServer.settings.donotShowInfoMsg": true,
"liveSassCompile.settings.showAnnouncements": null,
"liveSassCompile.settings.formats": [{
"format": "expanded",
"extensionName": ".css",
"savePath": "assets/css"
}
],
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tabSize": 2,
"diffEditor.wordWrap": "on",
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 100,
"editor.fontSize": 12,
"terminal.integrated.fontSize":12,
"prettier.singleQuote":true,
"editor.formatOnSave":true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.guides.bracketPairs": true,
"workbench.colorTheme": "Monokai"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment