Skip to content

Instantly share code, notes, and snippets.

@arbaouimehdi
Last active June 21, 2020 12:14
Show Gist options
  • Save arbaouimehdi/f91d50dd5b590b79828cfe1250ee568d to your computer and use it in GitHub Desktop.
Save arbaouimehdi/f91d50dd5b590b79828cfe1250ee568d to your computer and use it in GitHub Desktop.
VSCode Settings
{
"window.zoomLevel": 1,
"editor.fontFamily": "Monaco",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.detectIndentation": false,
"terminal.integrated.fontSize": 17,
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.color": "#90a4ae",
"workbench.startupEditor": "newUntitledFile",
"files.associations": {
"*.vue": "html",
"*.mdx": "markdown"
},
"explorer.autoReveal": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.sideBar.location": "left",
"window.restoreWindows": "all",
"npm.enableScriptExplorer": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#dd7878",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "gold",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "done",
"color": "#dd7878",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "goal",
"color": "pink",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98c379",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"multiCommand.commands": [
{
"command": "multiCommand.makeRoom",
"sequence": [
"workbench.action.toggleSidebarVisibility",
"workbench.action.toggleActivityBarVisibility"
]
}
],
"editor.roundedSelection": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"prettier.singleQuote": false,
"prettier.semi": true,
"prettier.trailingComma": "all",
"sync.gist": "f8029333e1f52da3f22ac2ec8f77ef47",
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastUpload": "2018-08-19T13:09:32.661Z",
"sync.lastDownload": "",
"sync.forceDownload": false,
"terminal.integrated.rendererType": "dom",
"emmet.includeLanguages": {
"javascript": "html"
},
"emmet.triggerExpansionOnTab": true,
"breadcrumbs.enabled": true,
"breadcrumbs.filePath": "off",
"breadcrumbs.symbolPath": "off",
"workbench.statusBar.visible": false,
"liveServer.settings.donotVerifyTags": true,
"files.exclude": {
".sass-cache": true
},
"prettier.printWidth": 50,
//
"workbench.colorTheme": "Cobalt2",
"editor.fontSize": 17,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"[php]": {
"editor.formatOnSave": true
},
"extensions.ignoreRecommendations": true,
"workbench.activityBar.visible": true,
"git.autofetch": true,
"explorer.compactFolders": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment