Last active
June 18, 2024 19:24
-
-
Save balduinofernando/6da19fc67d60e2df4e8522aee0774fc8 to your computer and use it in GitHub Desktop.
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
Show hidden characters
| { | |
| /** | |
| * Better Defaults | |
| **/ | |
| "editor.copyWithSyntaxHighlighting": false, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "editor.emptySelectionClipboard": false, | |
| "workbench.editor.enablePreview": false, | |
| "window.newWindowDimensions": "inherit", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "files.trimTrailingWhitespace": true, | |
| "diffEditor.renderSideBySide": false, | |
| "editor.snippetSuggestions": "top", | |
| "editor.detectIndentation": false, | |
| "breadcrumbs.enabled": false, | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| "workbench.sideBar.location": "right", | |
| "workbench.statusBar.visible": false, | |
| "workbench.editor.showTabs": "multiple", | |
| "editor.minimap.enabled": false, | |
| "editor.lineNumbers": "off", | |
| "scm.diffDecorations": "none", | |
| "editor.matchBrackets": "never", | |
| "workbench.tips.enabled": false, | |
| "editor.colorDecorators": false, | |
| "git.decorations.enabled": false, | |
| "workbench.startupEditor": "none", | |
| "editor.lightbulb.enabled": "off", | |
| "editor.selectionHighlight": false, | |
| "editor.overviewRulerBorder": false, | |
| "editor.renderLineHighlight": "none", | |
| "editor.occurrencesHighlight": "off", | |
| "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": "Moonlight II", | |
| "editor.fontFamily": "Cartograph CF, Fira Code", | |
| "editor.fontSize": 15, | |
| "editor.lineHeight": 50, | |
| "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": { | |
| "blade": "html", | |
| "vue-html": "html", | |
| "vue": "html", | |
| "twig": "html" | |
| }, | |
| "files.associations": { | |
| ".php_cs": "php", | |
| ".php_cs.dist": "php", | |
| "*.html": "twig" | |
| }, | |
| /** | |
| * PHP CS Fixer | |
| **/ | |
| "[php]": { | |
| "editor.defaultFormatter": "junstyle.php-cs-fixer" | |
| }, | |
| "php-cs-fixer.onsave": true, | |
| "php-cs-fixer.autoFixByBracket": false, | |
| "php-cs-fixer.rules": "@PSR2", | |
| "php-cs-fixer.executablePath": "/home/user/.config/composer/vendor/bin/php-cs-fixer", | |
| /** | |
| * Prettier | |
| **/ | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.formatOnSave": true | |
| }, | |
| "prettier.requireConfig": true, | |
| "prettier.useEditorConfig": false, | |
| /** | |
| * Window Settings | |
| **/ | |
| "window.titleBarStyle": "native", | |
| "apc.electron": { | |
| "frame": false, | |
| "titleBarStyle": "hiddenInset" | |
| }, | |
| "apc.stylesheet": { | |
| "div.letterpress": "background-image: url(/home/user/some-logo-here.svg) !important; width: 60% !important; opacity:0.3 !important; aspect-ratio: 1/1; background-size: contain; background-position-x: center; background-repeat: no-repeat;", | |
| ".decorationsOverviewRuler": "visibility:hidden; display:none;", | |
| ".tab": "visibility: hidden; overflow:auto;", | |
| ".editor .scrollbar .slider": "visibility: hidden;", | |
| ".editor .scrollbar:hover .slider": "visibility: initial;", | |
| ".monaco-editor .cursor": "background: linear-gradient(to bottom, #EC4D37, #1D1B1B) !important; box-shadow:0 0 10px .1px #ee0979, #ff6a00 0px 0px 10px 1px; color: #161616 !important", | |
| // ".title-actions": "display: none !important;", | |
| ".quick-input-widget.show-file-icons, .editor-widget.find-widget": "box-shadow: none !important;", | |
| ".filematch .monaco-icon-label:before, .custom-list-row.results .monaco-list-row .monaco-icon-label:before": "background-position: 0 bottom !important;", | |
| ".filematch .monaco-count-badge": "padding: 5px 6px 0 6px !important;", | |
| ".sidebar .title-label": "padding: 0 !important;", | |
| ".monaco-workbench .monaco-list:not(.element-focused):focus:before": "outline: none !important;", | |
| ".sidebar": "border: none !important;", | |
| ".quick-input-list-row div": "display: flex !important; align-items: center !important;", | |
| ".panel .composite.title": "visibility: hidden !important;", | |
| ".monaco-editor .scroll-decoration": "display: none !important;", | |
| ".monaco-scrollable-element > .shadow.top": "display: none !important;", | |
| ".monaco-split-view2 > .monaco-scrollable-element > .split-view-container": "background: #232336 !important;", | |
| ".inline-no-tabs-placeholder": "background: #191521 !important;", | |
| ".monaco-list-row.focused": "outline: none !important;", | |
| ".title.show-file-icons .label-container .monaco-icon-label.file-icon": "justify-content: center; padding: 0 !important;", | |
| ".monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before": "display: none !important;", | |
| ".monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before": "display: none !important;", | |
| ".monaco-workbench .pane-body.integrated-terminal .split-view-view": "border: none !important;", | |
| ".search-view .linematch .matchLineNum.show": "display: flex; align-items: center;" | |
| }, | |
| "apc.listRow": { | |
| "lists": [ | |
| "explorer-folders-view", | |
| "quick-input-list", | |
| "results", | |
| ], | |
| "height": 30, | |
| "fontSize": 15 | |
| }, | |
| "apc.font.family": "Fira Mono", | |
| "apc.monospace.font.family": "FiraCode Nerd Font Mono Regular", | |
| "symbols.hidesExplorerArrows": false, | |
| "editor.guides.indentation": false, | |
| "window.menuBarVisibility": "toggle", | |
| "workbench.iconTheme": "icons", | |
| "[vue]": { | |
| "editor.defaultFormatter": "Vue.volar" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.glyphMargin": false, | |
| "application.shellEnvironmentResolutionTimeout": 30, | |
| "files.exclude": { | |
| "**/node_modules": true | |
| }, | |
| "intelephense.telemetry.enabled": false, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "workbench.activityBar.location": "hidden", | |
| "window.commandCenter": false, | |
| "workbench.layoutControl.enabled": false, | |
| "update.mode": "manual", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "livewireDocs.version": "3.x", | |
| "workbench.tree.enableStickyScroll": false, | |
| "editor.stickyScroll.scrollWithEditor": false, | |
| "explorer.compactFolders": false, | |
| "editor.hover.sticky": false, | |
| "editor.stickyScroll.enabled": false, | |
| "animations.Install-Method": "Apc Customize UI++", | |
| "apc.imports": [ | |
| "file://${userHome}/.vscode/extensions/brandonkirbyson.vscode-animations-2.0.2/dist/updateHandler.js" | |
| ], | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "window.customTitleBarVisibility": "auto", | |
| "diffEditor.maxComputationTime": 0, | |
| ///////////////// | |
| "workbench.colorCustomizations": { | |
| "editorSuggestWidget.selectedBackground": "#241f30", | |
| "sideBar.background": "#232336", | |
| "list.activeSelectionBackground": "#31324D", | |
| "list.inactiveSelectionBackground": "#31324D", | |
| "list.focusBackground": "#31324D", | |
| "list.hoverBackground": "#31324D", | |
| // "terminalCursor.foreground": "#A277FF", | |
| // "editorCursor.background": "#000000" | |
| }, | |
| "editor.accessibilitySupport": "off", | |
| "editor.renderWhitespace": "none", | |
| "editor.hover.enabled": false, | |
| "editor.showFoldingControls": "never", | |
| "editor.scrollbar.horizontal": "hidden", | |
| "editor.scrollbar.vertical": "hidden", | |
| "editor.cursorBlinking": "solid", | |
| "editor.tabSize": 2, | |
| "editor.fontLigatures": true, | |
| "editor.tabCompletion": "on", | |
| "editor.suggestOnTriggerCharacters": false, | |
| "editor.parameterHints.enabled": false, | |
| //"editor.quickSuggestionsDelay": 999999999, | |
| //"editor.fontWeight": "", | |
| "editor.quickSuggestions": { | |
| "other": "off" | |
| }, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": "comment", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| } | |
| ] | |
| }, | |
| "explorer.decorations.badges": false, | |
| "files.autoSave": "afterDelay", | |
| "emmet.triggerExpansionOnTab": true, | |
| "extensions.ignoreRecommendations": true, | |
| "terminal.integrated.stickyScroll.enabled": false, | |
| "terminal.external.osxExec": "Warp.app", | |
| "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font, Dank Mono", | |
| "terminal.integrated.tabs.enabled": false, | |
| "material-icon-theme.hidesExplorerArrows": true, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "accessibility.signalOptions": { | |
| "volume": 0 | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment