Skip to content

Instantly share code, notes, and snippets.

@Robiussani152
Created March 9, 2022 05:09
Show Gist options
  • Save Robiussani152/2f35ea4bc6d259fac1357bf924e5b6fc to your computer and use it in GitHub Desktop.
Save Robiussani152/2f35ea4bc6d259fac1357bf924e5b6fc to your computer and use it in GitHub Desktop.
VsCode extentions & settings
  1. Open git bash and run the commands to install extentions
  2. Open settings.json and paste this file
  3. Download Operator Mono Lig Or Fira Code for font
{
"editor.suggestSelection": "first",
"editor.fontFamily": "'Operator Mono Lig', 'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontWeight": "400",
"editor.formatOnPaste": true,
"material-icon-theme.folders.color": "#8C59D0",
"editor.fontSize": 18,
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"editor.formatOnType": true,
"git.enableSmartCommit": true,
"diffEditor.codeLens": true,
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"editor.wordWrap": "on",
// "editor.wordWrapColumn": 40,
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"settingsSync.ignoredExtensions": [],
"breadcrumbs.enabled": true,
"editor.renderWhitespace": "none",
"terminal.integrated.fontSize": 16,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"terminal.integrated.fontWeightBold": "300",
"editor.fontLigatures": true,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#F44336",
"activityBar.activeBorder": "#F44336",
"list.activeSelectionForeground": "#F44336",
"list.inactiveSelectionForeground": "#F44336",
"list.highlightForeground": "#F44336",
"scrollbarSlider.activeBackground": "#F4433650",
"editorSuggestWidget.highlightForeground": "#F44336",
"textLink.foreground": "#F44336",
"progressBar.background": "#F44336",
"pickerGroup.foreground": "#F44336",
"tab.activeBorder": "#F44336",
"notificationLink.foreground": "#F44336",
"editorWidget.resizeBorder": "#F44336",
"editorWidget.border": "#F44336",
"settings.modifiedItemIndicator": "#F44336",
"settings.headerForeground": "#F44336",
"panelTitle.activeBorder": "#F44336",
"breadcrumb.activeSelectionForeground": "#F44336",
"menu.selectionForeground": "#F44336",
"menubar.selectionForeground": "#F44336",
"editor.findMatchBorder": "#F44336",
"selection.background": "#F4433640"
},
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",
"files.autoSave": "afterDelay",
"phpdoc-generator.useNamesInTop": true,
"explorer.confirmDragAndDrop": false,
"security.workspace.trust.enabled": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"tabnine.experimentalAutoImports": true,
"workbench.iconTheme": "material-icon-theme",
"beautify.language": {
"html": [
"html"
]
},
"blade.format.enable": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cSpell.userWords": [
"Authenticatable"
],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.colorTheme": "Luvia Theme",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.inlineSuggest.enabled": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.external.windowsExec": "D:\\laragon\\bin\\git\\bin\\bash.exe"
}
code --install-extension aaron-bond.better-comments
code --install-extension adpyke.codesnap
code --install-extension bmewburn.vscode-intelephense-client
code --install-extension calebporzio.better-phpunit
code --install-extension codingyu.laravel-goto-view
code --install-extension donjayamanne.jquerysnippets
code --install-extension dsznajder.es7-react-js-snippets
code --install-extension eamodio.gitlens
code --install-extension Equinusocio.vsc-community-material-theme
code --install-extension Equinusocio.vsc-material-theme
code --install-extension equinusocio.vsc-material-theme-icons
code --install-extension gitkraken.gitkraken-authentication
code --install-extension Gruntfuggly.todo-tree
code --install-extension hollowtree.vue-snippets
code --install-extension James-Yu.latex-workshop
code --install-extension jcbuisson.vue
code --install-extension kokororin.vscode-phpfmt
code --install-extension MehediDracula.php-namespace-resolver
code --install-extension ms-azuretools.vscode-docker
code --install-extension ms-vscode-remote.remote-containers
code --install-extension neilbrayfield.php-docblocker
code --install-extension Nixon.env-cmd-file-syntax
code --install-extension octref.vetur
code --install-extension onecentlin.laravel-blade
code --install-extension onecentlin.laravel5-snippets
code --install-extension PKief.material-icon-theme
code --install-extension rifi2k.format-html-in-php
code --install-extension ryannaddy.laravel-artisan
code --install-extension Sophisticode.php-formatter
code --install-extension stef-k.laravel-goto-controller
code --install-extension TabNine.tabnine-vscode
code --install-extension usernamehw.errorlens
code --install-extension vuetifyjs.vuetify-vscode
code --install-extension alefragnani.Bookmarks
code --install-extension bradlc.vscode-tailwindcss
code --install-extension christian-kohler.path-intellisense
code --install-extension esbenp.prettier-vscode
code --install-extension formulahendry.auto-rename-tag
code --install-extension GitHub.copilot
code --install-extension k--kato.intellij-idea-keybindings
code --install-extension maciekkoks.luvia-theme
code --install-extension ritwickdey.LiveServer
code --install-extension streetsidesoftware.code-spell-checker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment