Skip to content

Instantly share code, notes, and snippets.

@mukeshwani
Created September 16, 2020 03:10
Show Gist options
  • Save mukeshwani/0ce179efcbc5372cc9db07785cdc37f7 to your computer and use it in GitHub Desktop.
Save mukeshwani/0ce179efcbc5372cc9db07785cdc37f7 to your computer and use it in GitHub Desktop.
vs code settings for dev machine
{
"explorer.openEditors.visible": 0,
"editor.snippetSuggestions": "top",
"emmet.showAbbreviationSuggestions": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"workbench.colorTheme": "Just Black",
"workbench.iconTheme": "vscode-icons",
"editor.fontLigatures": true,
"files.autoSave": "off",
"editor.detectIndentation": true,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"eslint.enable": true,
// "files.exclude": { "**/.*": true },
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[json]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[html]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"[css]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"liveshare.featureSet": "insiders",
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"diffEditor.ignoreTrimWhitespace": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveshare.anonymousGuestApproval": "accept",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorCustomizations": {},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"comment.block"
],
"settings": {
"fontStyle": "italic",
"foreground": "#ff1493"
}
},
{
"scope": [
"keyword.operator.logical",
"keyword.operator.arithmetic",
"keyword.operator.assignment",
"keyword.operator.bitwise"
],
"settings": {
"fontStyle": ""
}
}
]
},
"todo-tree.tree.showScanModeButton": false,
"cSpell.userWords": [
"deno",
"feathersjs",
"middlewares",
"socketio",
"upsert",
"upvote"
],
"editor.lineHeight": 0,
"kite.showWelcomeNotificationOnStartup": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment