In this file, I have listed what themes, plugins and font I use in my VS Code editor. I have attached my VS Code json configuration file as well. Hope you will like it. Please star the repository. Thanks ♥
- Auto Close Tag
- Auto Rename Tag
- Beautify
- Bracket Pair Colorizer
- Color Highlight
- Docker
- Git History
- Highlight Matching Tag
- HTML CSS Support
- JavaScript (ES6) code snippets
- Laravel Blade Snippets
- Laravel Extension Pack
- Live Server
- Markdown Preview Enhanced
- Path Intellisense
- PHP Debug
- PHP Intelephense
- Code formatter
- Vetur
{
"workbench.iconTheme": "ayu",
"editor.wordWrap": "on",
"php.validate.run": "onType",
"php.suggest.basic": true,
"editor.matchBrackets": "always",
"bracketPairColorizer.highlightActiveScope": true,
"bracketPairColorizer.showBracketsInGutter": true,
"bracketPairColorizer.showVerticalScopeLine": false,
"bracketPairColorizer.activeScopeCSS": [
"borderStyle : none",
"backgroundColor : {color}; opacity: 0.5"
],
"diffEditor.ignoreTrimWhitespace": false,
"editor.minimap.enabled": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"workbench.startupEditor": "newUntitledFile",
"editor.detectIndentation": false,
"vetur.format.options.tabSize": 4,
"files.insertFinalNewline": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"editor.fontSize": 16,
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/assets/css"
}
],
"vetur.format.defaultFormatter.css": "none",
"vetur.format.defaultFormatter.html": "none",
"vetur.format.defaultFormatter.js": "none",
"vetur.format.defaultFormatter.less": "none",
"vetur.format.defaultFormatter.postcss": "none",
"vetur.format.defaultFormatter.pug": "none",
"vetur.format.defaultFormatter.scss": "none",
"vetur.format.defaultFormatter.ts": "none",
"liveServer.settings.donotShowInfoMsg": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.accessibilitySupport": "off",
"editor.formatOnSave": true,
"git.enabled": false,
"workbench.colorTheme": "Ayu Mirage Bordered",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}