Last active
December 17, 2019 06:31
-
-
Save itsabdessalam/c3f649153f4456090ef8114bd046160b to your computer and use it in GitHub Desktop.
vscode config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code --install-extension anthonydiametrix.ACF-Snippet | |
code --install-extension bierner.markdown-preview-github-styles | |
code --install-extension bmewburn.vscode-intelephense-client | |
code --install-extension bungcip.better-toml | |
code --install-extension ChakrounAnas.turbo-console-log | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension christian-kohler.path-intellisense | |
code --install-extension cjhowe7.laravel-blade | |
code --install-extension cmstead.jsrefactor | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension DavidAnson.vscode-markdownlint | |
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension donjayamanne.githistory | |
code --install-extension DotJoshJohnson.xml | |
code --install-extension dsznajder.es7-react-js-snippets | |
code --install-extension dwarfpenguin.swagger-generator | |
code --install-extension eamodio.gitlens | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension eg2.vscode-npm-script | |
code --install-extension Equinusocio.vsc-material-theme | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension felixfbecker.php-debug | |
code --install-extension felixfbecker.php-intellisense | |
code --install-extension formulahendry.auto-close-tag | |
code --install-extension formulahendry.auto-rename-tag | |
code --install-extension formulahendry.code-runner | |
code --install-extension herrmannplatz.npm-dependency-links | |
code --install-extension hollowtree.vue-snippets | |
code --install-extension HookyQR.beautify | |
code --install-extension jeremyrajan.vscode-lebab | |
code --install-extension jock.svg | |
code --install-extension joelday.docthis | |
code --install-extension johnpapa.Angular2 | |
code --install-extension junstyle.php-cs-fixer | |
code --install-extension kisstkondoros.vscode-codemetrics | |
code --install-extension kokororin.vscode-phpfmt | |
code --install-extension kumar-harsh.graphql-for-vscode | |
code --install-extension luongnd.edge | |
code --install-extension mdickin.markdown-shortcuts | |
code --install-extension Mikael.Angular-BeastCode | |
code --install-extension mikestead.dotenv | |
code --install-extension mrmlnc.vscode-apache | |
code --install-extension ms-azuretools.vscode-docker | |
code --install-extension ms-mssql.mssql | |
code --install-extension ms-python.python | |
code --install-extension ms-vscode-remote.remote-ssh | |
code --install-extension ms-vscode-remote.remote-ssh-edit | |
code --install-extension ms-vscode-remote.remote-ssh-explorer | |
code --install-extension ms-vscode.cpptools | |
code --install-extension ms-vscode.csharp | |
code --install-extension ms-vsliveshare.vsliveshare | |
code --install-extension msjsdiag.debugger-for-chrome | |
code --install-extension msjsdiag.vscode-react-native | |
code --install-extension octref.vetur | |
code --install-extension onecentlin.laravel-blade | |
code --install-extension patbenatar.advanced-new-file | |
code --install-extension PKief.material-icon-theme | |
code --install-extension pkosta2005.heroku-command | |
code --install-extension Prisma.vscode-graphql | |
code --install-extension rebornix.ruby | |
code --install-extension redhat.vscode-yaml | |
code --install-extension remimarsal.prettier-now | |
code --install-extension ritwickdey.LiveServer | |
code --install-extension sdras.vue-vscode-snippets | |
code --install-extension shinnn.stylelint | |
code --install-extension silvenon.mdx | |
code --install-extension sleistner.vscode-fileutils | |
code --install-extension small.php-ci | |
code --install-extension sysoev.language-stylus | |
code --install-extension Telerik.nativescript | |
code --install-extension WallabyJs.quokka-vscode | |
code --install-extension wayou.vscode-todo-highlight | |
code --install-extension wix.vscode-import-cost | |
code --install-extension wordpresstoolbox.wordpress-toolbox | |
code --install-extension wwwalkerrun.nativescript-ng2-snippets | |
code --install-extension xabikos.JavaScriptSnippets | |
code --install-extension yzane.markdown-pdf | |
code --install-extension yzhang.markdown-all-in-one |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"blade.format.enable": true, | |
"code-runner.enableAppInsights": false, | |
// editor | |
"editor.fontFamily": "Operator Mono", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 17, | |
"editor.fontWeight": "300", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.formatOnSaveTimeout": 100, | |
"editor.largeFileOptimizations": false, | |
"editor.lineHeight": 22, | |
"editor.matchBrackets": true, | |
"editor.minimap.enabled": false, | |
"editor.snippetSuggestions": "top", | |
"editor.tabSize": 4, | |
"editor.useTabStops": false, | |
"editor.wordWrap": "on", | |
"emmet.includeLanguages": { | |
"blade": "html", | |
"vue-html": "html" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "html", | |
"autoFix": true | |
} | |
], | |
"explorer.openEditors.visible": 0, | |
"files.associations": { | |
"*.js": "javascriptreact" | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/.vscode": true, | |
"**/__pycache__": true, | |
"**/.pytest_cache": true, | |
"**/node_modules": true, | |
"node_modules": true, | |
"venv": true, | |
"*.sublime-*": true, | |
"env*": true | |
}, | |
"files.insertFinalNewline": true, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/env/**": true, | |
"**/venv/**": true, | |
"env-*": true | |
}, | |
"git.autofetch": true, | |
"git.enabled": true, | |
"gitlens.advanced.telemetry.enabled": false, | |
"html.format.enable": true, | |
"javascript.format.enable": true, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": false, | |
"javascript.preferences.quoteStyle": "double", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"javascript.validate.enable": false, | |
"liveServer.settings.donotVerifyTags": true, | |
"php.executablePath": "/usr/bin/php", | |
"php.validate.enable": true, | |
"php.validate.executablePath": "/usr/bin/php", | |
"php.validate.run": "onType", | |
"prettier.disableLanguages": [ | |
"javascript", | |
"javascriptreact" | |
], | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/env": true, | |
"**/venv": true | |
}, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontWeight": "300", | |
"terminal.integrated.rendererType": "dom", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"todohighlight.isEnable": true, | |
"turboConsoleLog.addSemicolonInTheEnd": true, | |
"turboConsoleLog.logMessagePrefix": "DEBUG", | |
"turboConsoleLog.wrapLogMessage": true, | |
"typescript.preferences.quoteStyle": "double", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"vetur.format.defaultFormatter.css": "prettier", | |
"vetur.format.defaultFormatter.js": "prettier", | |
"vetur.format.defaultFormatter.scss": "prettier", | |
"vetur.validation.template": false, | |
"window.openFilesInNewWindow": "off", | |
"window.titleBarStyle": "custom", | |
"window.zoomLevel": 0, | |
// theme customization | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#2187ee", | |
"activityBarBadge.foreground": "#ffffff", | |
"list.activeSelectionForeground": "#2187ee", | |
"list.inactiveSelectionForeground": "#2187ee", | |
"list.highlightForeground": "#2187ee", | |
"list.hoverBackground": "#263246", | |
"list.activeSelectionBackground": "#263246", | |
"list.inactiveSelectionBackground": "#263246", | |
"editor.selectionBackground": "#263246", | |
"scrollbarSlider.activeBackground": "#cbf1f750", | |
"editorSuggestWidget.highlightForeground": "#2187ee", | |
"textLink.foreground": "#2187ee", | |
"progressBar.background": "#2187ee", | |
"pickerGroup.foreground": "#2187ee", | |
"tab.activeBorder": "#2187ee", | |
"notificationLink.foreground": "#2187ee", | |
"editorWidget.resizeBorder": "#2187ee", | |
"editorWidget.border": "#2187ee", | |
"settings.modifiedItemIndicator": "#2187ee", | |
"settings.headerForeground": "#2187ee", | |
"panelTitle.activeBorder": "#2187ee", | |
"breadcrumb.activeSelectionForeground": "#2187ee", | |
"menu.selectionForeground": "#2187ee", | |
"menubar.selectionForeground": "#2187ee", | |
"editor.findMatchBorder": "#2187ee", | |
"selection.background": "#2187ee40", | |
"badge.background": "#222936", | |
"editor.background": "#222936", | |
"activityBar.background": "#222936", | |
"activityBar.activeBackground": "#263246", | |
"sideBar.background": "#222936", | |
"sideBarSectionHeader.background": "#222936", | |
"sideBar.border": "#222936", | |
"editorGroupHeader.tabsBackground": "#222936", | |
"tab.activeBackground": "#222936", | |
"tab.inactiveBackground": "#222936", | |
"tab.border": "#222936", | |
"statusBar.background": "#272b35", | |
"statusBarItem.remoteBackground": "#2187ee", | |
"statusBarItem.remoteForeground": "#ffffff", | |
"notifications.background": "#222936", | |
"editor.findMatchBackground": "#222936", | |
"editorWidget.background": "#222936", | |
"breadcrumb.background": "#222936", | |
"terminal.background": "#222936", | |
"background": "#ff0000", | |
"panel.background": "#222936" | |
}, | |
"workbench.colorTheme": "Material Theme", | |
"workbench.editor.tabSizing": "shrink", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.statusBar.visible": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment