Created
July 10, 2021 12:01
-
-
Save fwartner/e3060d93a959dacdcff7f7b98ab9b7d6 to your computer and use it in GitHub Desktop.
settings.json
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
{ | |
/** | |
* Better Defaults | |
**/ | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.editor.enablePreview": false, | |
"window.newWindowDimensions": "inherit", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"files.trimTrailingWhitespace": true, | |
"diffEditor.renderSideBySide": false, | |
"editor.snippetSuggestions": "top", | |
"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": "never", | |
"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": "Fira Code", | |
"editor.fontSize": 13, | |
"editor.lineHeight": 45, | |
"editor.suggestFontSize": 15, | |
"editor.suggestLineHeight": 28, | |
"terminal.integrated.fontSize": 15, | |
"terminal.integrated.lineHeight": 1.5, | |
/** | |
* Find | |
**/ | |
"search.useIgnoreFiles": false, | |
"search.exclude": { | |
// Hide everything in /vendor, except the "laravel" and "livewire" folder. | |
"**/vendor/{[^l],?[^ai]}*": true, | |
// Hide everything in /public, except "index.php" | |
"**/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": { | |
"vue-html": "html", | |
"vue": "html" | |
}, | |
"files.associations": { | |
".php_cs": "php", | |
".php_cs.dist": "php" | |
}, | |
"beautify.language": { | |
"html": [ | |
"htm", | |
"html", | |
"antlers" | |
] | |
}, | |
/** | |
* PHP | |
**/ | |
"php.suggest.basic": false, | |
/** | |
* PHP CS Fixer | |
**/ | |
"php-cs-fixer.onsave": true, | |
"php-cs-fixer.showOutput": false, | |
"php-cs-fixer.autoFixByBracket": false, | |
"php-cs-fixer.rules": "@PSR2", | |
/** | |
* Prettier | |
**/ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"prettier.requireConfig": true, | |
"prettier.useEditorConfig": false, | |
/** | |
* Window Settings | |
**/ | |
// "window.nativeTabs": true, | |
"window.titleBarStyle": "native", | |
"customizeUI.titleBar": "inline", | |
"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" | |
}, | |
"simple-project-switche,r.directory": "~/Development/Sites", | |
"php-cs-fixer.executablePath": "php-cs-fixer", | |
"php-cs-fixer.config": ".php_cs;.php_cs.dist", | |
"php-cs-fixer.allowRisky": false, | |
"php-cs-fixer.pathMode": "override", | |
"php-cs-fixer.exclude": [], | |
"php-cs-fixer.autoFixBySemicolon": true, | |
"php-cs-fixer.formatHtml": true, | |
"php-cs-fixer.documentFormattingProvider": true, | |
"css.validate": false, | |
"tailwindCSS.validate": true, | |
"files.autoSave": "afterDelay", | |
"git.autofetch": true, | |
"tailwindCSS.emmetCompletions": true, | |
"kite.showWelcomeNotificationOnStartup": false, | |
"[vue]": { | |
"editor.defaultFormatter": "octref.vetur" | |
}, | |
"redhat.telemetry.enabled": true, | |
"[css]": { | |
"editor.defaultFormatter": "lonefy.vscode-JS-CSS-HTML-formatter" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"go.toolsManagement.autoUpdate": true, | |
"editor.accessibilitySupport": "off", | |
"settingsSync.ignoredSettings": [ | |
], | |
"sync.gist": "32dc0e89cd90aa3269ad0471689df910", | |
"sync.forceDownload": true, | |
"sync.autoUpload": true, | |
"sync.forceUpload": true, | |
"sync.autoDownload": true, | |
"sync.quietSync": false, | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.inlineSuggest.enabled": true, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"blade.format.enable": true, | |
"tailwindCSS.includeLanguages": { | |
"plaintext": "html" | |
}, | |
"settingsSync.ignoredExtensions": [ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment