Skip to content

Instantly share code, notes, and snippets.

@skiabox
Last active October 2, 2020 10:17
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 skiabox/6e071e2399819d3ae0bd2e7d4ebdfde8 to your computer and use it in GitHub Desktop.
Save skiabox/6e071e2399819d3ae0bd2e7d4ebdfde8 to your computer and use it in GitHub Desktop.
vscode sample settings file
{
"editor.fontSize": 18,
"workbench.iconTheme": "material-icon-theme",
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 18,
"editor.tabSize": 2,
"[javascript]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"explorer.confirmDelete": false,
"emmet.triggerExpansionOnTab": true,
"tailwindCSS.emmetCompletions": true,
"window.zoomLevel": 3,
"eslint.alwaysShowStatus": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll": false
},
"editor.formatOnPaste": true,
"workbench.editor.labelFormat": "short",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"highlight-matching-tag.styles": {
"opening": {
"left": {
"underline": "yellow"
},
"right": {
"surround": "#155FFA"
},
"name": {
"highlight": "rgba(180, 20, 80, 0.3)"
}
},
"closing": {
"full": {
"custom": {
"dark": {
"borderWidth": "0 0 1px 0",
"borderColor": "white",
"borderStyle": "solid",
"borderRadius": "4px",
"right": "10px"
},
"light": {
"borderWidth": "0 0 1px 0",
"borderColor": "brown",
"borderStyle": "solid",
"borderRadius": "4px",
"right": "10px"
}
}
}
}
},
"editor.renderWhitespace": "all",
"css.remoteStyleSheets": [
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
],
"editor.fontFamily": "Operator Mono Lig, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"colorTabs.statusBarBackground": false,
"colorTabs.config": [
{
"regex": "src/.*",
"color": "#FF0000"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment