Skip to content

Instantly share code, notes, and snippets.

@christianstrang
Last active December 29, 2019 13:51
Show Gist options
  • Save christianstrang/0b74fde16e03a6051712bdafebbe5137 to your computer and use it in GitHub Desktop.
Save christianstrang/0b74fde16e03a6051712bdafebbe5137 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings and Extension Sync
{"lastUpload":"2019-12-29T13:51:07.428Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.3"
},
{
"metadata": {
"id": "e58f546c-babc-455f-a265-ba40dbd140d4",
"publisherId": "sdras.night-owl",
"publisherDisplayName": "sdras"
},
"name": "night-owl",
"publisher": "sdras",
"version": "1.1.3"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "3.18.0"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "2.0.11"
}
]
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveAs"
},
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveLocalFile",
"when": "remoteFileDialogVisible"
},
{
"key": "ctrl+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "ctrl+k s",
"command": "-workbench.action.files.saveAll"
}
]
{
"git.path": "C:\\DEV\\Software\\cmder\\vendor\\git-for-windows\\bin\\git.exe",
"editor.formatOnSave": true,
"workbench.tree.indent": 20,
"git.autofetch": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"git.enableSmartCommit": true,
"workbench.colorTheme": "Dracula Soft",
"editor.fontSize": 16,
"oneDarkPro.editorTheme": "Onedark Pro",
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.gist": "0b74fde16e03a6051712bdafebbe5137",
"git.ignoreMissingGitWarning": true,
}
{
"import material ui base": {
"scope": "javascriptreact",
"prefix": "impui",
"body": [
"import { Box } from '@material-ui/core';"
],
"description": "Material ui base import"
}
}
{
"Themed Component": {
"scope": "javascriptreact",
"prefix": "tcomp",
"body": [
"import React from 'react'",
"import { makeStyles } from '@material-ui/core/styles';",
"import {Paper} from '@material-ui/core';"
" ",
"const useStyles = makeStyles(theme => ({",
"root: {",
"},",
"}));",
" ",
"export default function ${1:ComponentName}(props) {",
" const classes = useStyles();",
" ",
" return (",
" <div className={classes.root}>",
" $0",
" </div>",
" )",
"}",
],
"description": "Create Themed Component"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment