Skip to content

Instantly share code, notes, and snippets.

@kshirish
Created August 24, 2021 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshirish/787ca13a9be80018ffdd298feb348dd9 to your computer and use it in GitHub Desktop.
Save kshirish/787ca13a9be80018ffdd298feb348dd9 to your computer and use it in GitHub Desktop.
vscode settings
{
"editor.snippetSuggestions": "top",
"editor.suggestSelection": "first",
"editor.cursorSmoothCaretAnimation": false,
"editor.smoothScrolling": true,
"editor.fontSize": 14,
"editor.fontFamily": "Monaco",
"editor.fontWeight": "bold",
"editor.formatOnSave": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"explorer.confirmDragAndDrop": false,
"editor.cursorStyle": "line",
"terminal.integrated.fontSize": 16,
"workbench.sideBar.location": "left",
"breadcrumbs.enabled": true,
// "terminal.integrated.shell.osx": "/bin/zsh",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontFamily": "Monaco",
"terminal.integrated.fontWeight": "bold",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"workbench.iconTheme": "material-icon-theme",
"workbench.editor.enablePreview": false,
"workbench.colorTheme": "Default Light+",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment