Last active
September 27, 2021 18:53
-
-
Save patrickmaciel/e938c26b22f95cef2086130be076ffe2 to your computer and use it in GitHub Desktop.
desktop-vscode-settings.json
This file contains 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
{ | |
/** | |
* Better Defaults | |
**/ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"window.newWindowDimensions": "inherit", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "bottom", | |
"editor.detectIndentation": false, | |
"window.nativeFullScreen": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
/** | |
* Hide Everything | |
*/ | |
"workbench.activityBar.visible": false, | |
"workbench.sideBar.location": "right", | |
"workbench.statusBar.visible": false, | |
"workbench.editor.showTabs": false, | |
"editor.renderIndentGuides": false, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "on", | |
/** | |
* Silence The Noise | |
*/ | |
"breadcrumbs.enabled": false, | |
"scm.diffDecorations": "none", | |
"editor.hover.enabled": false, | |
"editor.matchBrackets": "always", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": false, | |
"workbench.startupEditor": "none", | |
"editor.lightbulb.enabled": false, | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": false, | |
"problems.decorations.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
/** | |
* Typography | |
**/ | |
"workbench.colorTheme": "Palenight Theme", | |
"editor.fontFamily": "'FiraCode NF'", | |
"editor.fontSize": 16, | |
"editor.lineHeight": 45, | |
"editor.suggestFontSize": 15, | |
"editor.suggestLineHeight": 28, | |
"editor.wordWrap": "on", | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.lineHeight": 1.5, | |
"window.zoomLevel": 1, | |
/** | |
* Find | |
**/ | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"/vendor": true, | |
"**/public/{[^i],?[^n]}*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true, | |
".phpunit.result.cache": true | |
}, | |
/** | |
* Code | |
**/ | |
// Include "-" in word selection. | |
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", | |
"emmet.includeLanguages": { | |
"blade": "html", | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"files.associations": { | |
".php_cs": "php", | |
".php_cs.dist": "php", | |
".env": "dotenv" | |
}, | |
/** | |
* PHP | |
**/ | |
"php.suggest.basic": false, | |
/** | |
* PHP CS Fixer | |
**/ | |
"[php]": { | |
"editor.defaultFormatter": "junstyle.php-cs-fixer" | |
}, | |
"php-cs-fixer.onsave": true, | |
"php-cs-fixer.showOutput": false, | |
"php-cs-fixer.autoFixByBracket": false, | |
"php-cs-fixer.rules": "@PSR2", | |
"php-cs-fixer.executablePathWindows": "C:\\Users\\patri\\.vscode\\extensions\\junstyle.php-cs-fixer-0.2.5\\php-cs-fixer.phar", | |
/** | |
* Prettier | |
**/ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
/** | |
* Window Settings | |
**/ | |
// Note for Windows users: | |
// Unfortunately, "Full-bleed" isn't possible in Windows. | |
// The best you can do is use the native "Windows" window | |
// style and add these CSS selectors to clean it up further. | |
"window.menuBarVisibility": "toggle", | |
"customizeUI.stylesheet": { | |
".editor .title": "background: transparent !important;", | |
".editor .title .label-container": "visibility: hidden;", | |
// Hide top-right buttons | |
".editor .title .actions-container .action-item a": "visibility: hidden;", | |
// Show top-right "settings goto icon" | |
".editor .title .actions-container .action-item a[title=\"Open Settings (UI)\"]": "visibility: initial;", | |
".editor .title .actions-container .action-item a[title=\"Open Settings (JSON)\"]": "visibility: initial;", | |
// Make it the "right-most" icon. | |
".editor .title .actions-container": "flex-direction: row-reverse;", | |
// Only show the scrollbar on hover. | |
".editor .scrollbar .slider": "visibility: hidden", | |
".editor .scrollbar:hover .slider": "visibility: initial", | |
// Change cursor color. | |
".monaco-editor .cursor": "background: linear-gradient(to bottom, #7f00ff, #e100ff) !important; color: #292D3E !important" | |
}, | |
"editor.inlineSuggest.enabled": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"[blade]": { | |
"editor.defaultFormatter": "shufo.vscode-blade-formatter" | |
}, | |
"php-cs-fixer.lastDownload": 1632230777377, | |
"vscodeGoogleTranslate.preferredLanguage": "Portuguese", | |
"explorer.confirmDelete": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.editor.enablePreview": false, | |
"editor.bracketPairColorization.enabled": true, | |
"github.copilot.inlineSuggest.enable": true, | |
"screencastMode.onlyKeyboardShortcuts": true | |
} |
This file contains 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
{ | |
/** | |
* Better Defaults | |
**/ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"window.newWindowDimensions": "inherit", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "bottom", | |
"editor.detectIndentation": false, | |
"window.nativeFullScreen": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
/** | |
* Hide Everything | |
*/ | |
"workbench.activityBar.visible": false, | |
"workbench.sideBar.location": "right", | |
"workbench.statusBar.visible": false, | |
"workbench.editor.showTabs": false, | |
"editor.renderIndentGuides": false, | |
"editor.minimap.enabled": false, | |
"editor.lineNumbers": "on", | |
/** | |
* Silence The Noise | |
*/ | |
"breadcrumbs.enabled": false, | |
"scm.diffDecorations": "none", | |
"editor.hover.enabled": false, | |
"editor.matchBrackets": "always", | |
"workbench.tips.enabled": false, | |
"editor.colorDecorators": false, | |
"git.decorations.enabled": false, | |
"workbench.startupEditor": "none", | |
"editor.lightbulb.enabled": false, | |
"editor.selectionHighlight": false, | |
"editor.overviewRulerBorder": false, | |
"editor.renderLineHighlight": "none", | |
"editor.occurrencesHighlight": false, | |
"problems.decorations.enabled": false, | |
"editor.renderControlCharacters": false, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.gotoLocation.multipleReferences": "goto", | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"editor.gotoLocation.multipleDeclarations": "goto", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"editor.gotoLocation.multipleImplementations": "goto", | |
"editor.gotoLocation.multipleTypeDefinitions": "goto", | |
/** | |
* Typography | |
**/ | |
"workbench.colorTheme": "Palenight Theme", | |
"editor.fontFamily": "'FiraCode NF'", | |
"editor.fontSize": 16, | |
"editor.lineHeight": 45, | |
"editor.suggestFontSize": 15, | |
"editor.suggestLineHeight": 28, | |
"editor.wordWrap": "on", | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.lineHeight": 1.5, | |
"window.zoomLevel": 1, | |
/** | |
* Find | |
**/ | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
"/vendor": true, | |
"**/public/{[^i],?[^n]}*": true, | |
"**/node_modules": true, | |
"**/dist": true, | |
"**/_ide_helper.php": true, | |
"**/composer.lock": true, | |
"**/package-lock.json": true, | |
"storage": true, | |
".phpunit.result.cache": true | |
}, | |
/** | |
* Code | |
**/ | |
// Include "-" in word selection. | |
"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?", | |
"emmet.includeLanguages": { | |
"blade": "html", | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"files.associations": { | |
".php_cs": "php", | |
".php_cs.dist": "php", | |
".env": "dotenv" | |
}, | |
/** | |
* PHP | |
**/ | |
"php.suggest.basic": false, | |
/** | |
* PHP CS Fixer | |
**/ | |
"[php]": { | |
"editor.defaultFormatter": "junstyle.php-cs-fixer" | |
}, | |
"php-cs-fixer.onsave": true, | |
"php-cs-fixer.showOutput": false, | |
"php-cs-fixer.autoFixByBracket": false, | |
"php-cs-fixer.rules": "@PSR2", | |
"php-cs-fixer.executablePathWindows": "C:\\Users\\patri\\.vscode\\extensions\\junstyle.php-cs-fixer-0.2.5\\php-cs-fixer.phar", | |
/** | |
* Prettier | |
**/ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
/** | |
* Window Settings | |
**/ | |
// Note for Windows users: | |
// Unfortunately, "Full-bleed" isn't possible in Windows. | |
// The best you can do is use the native "Windows" window | |
// style and add these CSS selectors to clean it up further. | |
"window.menuBarVisibility": "toggle", | |
"customizeUI.stylesheet": { | |
".editor .title": "background: transparent !important;", | |
".editor .title .label-container": "visibility: hidden;", | |
// Hide top-right buttons | |
".editor .title .actions-container .action-item a": "visibility: hidden;", | |
// Show top-right "settings goto icon" | |
".editor .title .actions-container .action-item a[title=\"Open Settings (UI)\"]": "visibility: initial;", | |
".editor .title .actions-container .action-item a[title=\"Open Settings (JSON)\"]": "visibility: initial;", | |
// Make it the "right-most" icon. | |
".editor .title .actions-container": "flex-direction: row-reverse;", | |
// Only show the scrollbar on hover. | |
".editor .scrollbar .slider": "visibility: hidden", | |
".editor .scrollbar:hover .slider": "visibility: initial", | |
// Change cursor color. | |
".monaco-editor .cursor": "background: linear-gradient(to bottom, #7f00ff, #e100ff) !important; color: #292D3E !important" | |
}, | |
"editor.inlineSuggest.enabled": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar", | |
"[blade]": { | |
"editor.defaultFormatter": "shufo.vscode-blade-formatter" | |
}, | |
"php-cs-fixer.lastDownload": 1632230777377, | |
"vscodeGoogleTranslate.preferredLanguage": "Portuguese", | |
"explorer.confirmDelete": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.editor.enablePreview": false, | |
"editor.bracketPairColorization.enabled": true, | |
"github.copilot.inlineSuggest.enable": true, | |
"screencastMode.onlyKeyboardShortcuts": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment