Last active
July 15, 2022 20:57
-
-
Save ahinkle/70c110f8b89d92930112f398a2e9e3e4 to your computer and use it in GitHub Desktop.
VSCode Settings
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
| { | |
| "editor.inlineSuggest.enabled": true, | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "php.suggest.basic": false, | |
| "editor.minimap.enabled": false, | |
| "workbench.sideBar.location": "right", | |
| "workbench.fontAliasing": "antialiased", | |
| "editor.renderWhitespace": "none", | |
| "editor.lineHeight": 28, | |
| "editor.letterSpacing": 0.5, | |
| "editor.fontFamily": "Monolisa", | |
| "editor.suggestFontSize": 16, | |
| "editor.suggestLineHeight": 28, | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.lineHeight": 1.5, | |
| "terminal.integrated.cursorBlinking": false, | |
| "terminal.integrated.cursorStyle": "line", | |
| "editor.fontLigatures": true, | |
| "editor.quickSuggestionsDelay": 0, | |
| "editor.emptySelectionClipboard": false, | |
| "editor.formatOnPaste": true, | |
| "workbench.startupEditor": "none", | |
| "editor.renderControlCharacters": true, | |
| "editor.renderLineHighlight": "none", | |
| "editor.matchBrackets": "never", | |
| "editor.lineNumbers": "on", | |
| "explorer.openEditors.visible": 0, | |
| "vscode_custom_css.imports": [ | |
| "file:///Users/grayloon/Documents/vscode.css" | |
| ], | |
| "extensions.ignoreRecommendations": true, | |
| "window.title": "${activeEditorMedium} ${dirty} ${separator}${rootName}", | |
| "workbench.colorTheme": "Natty", | |
| "workbench.iconTheme": "vscode-icons", | |
| "workbench.tips.enabled": false, | |
| "gitlens.mode.active": "zen", | |
| "githubPullRequests.focusedMode": false, | |
| "githubIssues.userCompletions.enabled": false, | |
| "zenMode.fullScreen": false, | |
| "zenMode.centerLayout": false, | |
| "debug.showInlineBreakpointCandidates": false, | |
| "workbench.editor.enablePreview": false, | |
| "editor.accessibilitySupport": "off", | |
| "editor.autoClosingQuotes": "never", | |
| "zenMode.silentNotifications": false, | |
| "security.workspace.trust.banner": "never", | |
| "zenMode.hideLineNumbers": true, | |
| "zenMode.hideStatusBar": true, | |
| "zenMode.hideTabs": true, | |
| "zenMode.restore": false, | |
| "editor.occurrencesHighlight": false, | |
| "editor.overviewRulerBorder": false, | |
| "editor.foldingHighlight": false, | |
| "editor.rulers": [], | |
| "editor.scrollbar.horizontal": "hidden", | |
| "editor.scrollbar.vertical": "hidden", | |
| "customizeUI.titleBar": "inline", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "githubIssues.createIssueTriggers": [], | |
| "githubPullRequests.commentExpandState": "collapseAll", | |
| "githubIssues.assignWhenWorking": false, | |
| "bracketPairColorizer.showHorizontalScopeLine": false, | |
| "bracketPairColorizer.showVerticalScopeLine": false, | |
| "cSpell.userWords": [ | |
| "Livewire" | |
| ], | |
| "git.enableSmartCommit": true, | |
| "namespaceResolver.showMessageOnStatusBar": true, | |
| "namespaceResolver.sortAlphabetically": true, | |
| "discord.largeImageIdling": "Main Menu", | |
| "discord.lowerDetailsEditing": "Private Workspace", | |
| "discord.detailsEditing": "Writing some {lang}..", | |
| "editor.cursorBlinking": "phase", | |
| "customizeUI.stylesheet": { | |
| ".editor .title": "background: transparent !important; --title-border-bottom-color: transparent !important;", | |
| // ".editor .title": "display: none !important;", | |
| // ".editor .title .label-container": "visibility: hidden;", | |
| // Hide top-right buttons | |
| // ".editor > div.content, .editor .editor-container": "background-image: linear-gradient(to bottom right, #191C3E 0%, #172124 100%); background-size: cover;", | |
| // ".editor > div.content, .editor .editor-container": "background-image: url(/Users/calebporzio/Desktop/test.jpg); background-size: cover", | |
| ".monaco-editor-background": "background-color: transparent !important", | |
| ".monaco-editor .margin": "background-color: transparent ! important", | |
| ".monaco-editor": "background-color: transparent ! important", | |
| ".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; display:none;", | |
| // 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", | |
| // Hide the top bar. | |
| //".title.show-file-icons": "display: none !important;", | |
| ".monaco-workbench .part.editor>.content .editor-group-container>.title>.label-container>.title-label": "opacity: .4", | |
| // only show the active line number. | |
| ".monaco-editor .margin-view-overlays .line-numbers": "display: none", | |
| ".active-line-number": "display: block !important; opacity: 0.1", | |
| }, | |
| "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 | |
| }, | |
| "scm.diffDecorations": "none", | |
| "editor.colorDecorators": false, | |
| "git.decorations.enabled": false, | |
| "editor.lightbulb.enabled": false, | |
| "editor.selectionHighlight": false, | |
| "problems.decorations.enabled": 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", | |
| "workbench.editor.showTabs": false, | |
| "editor.copyWithSyntaxHighlighting": false, | |
| "window.newWindowDimensions": "inherit", | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "diffEditor.renderSideBySide": false, | |
| "editor.snippetSuggestions": "top", | |
| "editor.detectIndentation": false, | |
| "window.nativeFullScreen": false, | |
| "files.insertFinalNewline": true, | |
| "editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?", | |
| "emmet.includeLanguages": { | |
| "blade": "html", | |
| "vue-html": "html", | |
| "vue": "html", | |
| "spec.js": "html" | |
| }, | |
| "files.associations": { | |
| ".php_cs": "php", | |
| ".php_cs.dist": "php" | |
| }, | |
| "conventionalCommits.promptFooter": false, | |
| "conventionalCommits.gitmoji": false, | |
| "conventionalCommits.promptBody": false, | |
| "composerCompanion.executablePath": "/usr/local/bin/composer", | |
| "bracketPairColorizer.depreciation-notice": false, | |
| "conventionalCommits.showNewVersionNotes": false, | |
| "git.autofetch": "all", | |
| "gitlens.hovers.currentLine.over": "line", | |
| "git.ignoreRebaseWarning": true, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "tailwindCSS.files.exclude": [ | |
| "**/.git/**", | |
| "**/node_modules/**", | |
| "**/.hg/**", | |
| "**/nova/**" | |
| ], | |
| "conventionalCommits.silentAutoCommit": true, | |
| "breadcrumbs.enabled": false, | |
| "editor.fontSize": 14, | |
| "window.titleBarStyle": "native", | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": "comment", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| } | |
| ] | |
| }, | |
| "customizeUI.activityBar": "top", | |
| "terminal.integrated.gpuAcceleration": "off", | |
| "vscode_vibrancy.opacity": 0.7, | |
| "workbench.preferredLightColorTheme": "Snazzy Light", | |
| "workbench.preferredDarkColorTheme": "Natty", | |
| "window.autoDetectColorScheme": true, | |
| "discord.removeRemoteRepository": true, | |
| "terminal.external.osxExec": "/Applications/Warp.app", | |
| "terminal.explorerKind": "external", | |
| "terminal.integrated.profiles.osx": { | |
| "bash": { | |
| "path": "bash", | |
| "args": [ | |
| "-l" | |
| ], | |
| "icon": "terminal-bash" | |
| }, | |
| "zsh": { | |
| "path": "zsh", | |
| "args": [ | |
| "-l" | |
| ] | |
| }, | |
| "fish": { | |
| "path": "fish", | |
| "args": [ | |
| "-l" | |
| ] | |
| }, | |
| "tmux": { | |
| "path": "tmux", | |
| "icon": "terminal-tmux" | |
| }, | |
| "pwsh": { | |
| "path": "pwsh", | |
| "icon": "terminal-powershell" | |
| }, | |
| "warp": { | |
| "path": "/Applications/Warp.app/Contents/MacOS/Warp", | |
| "icon": "terminal-warp" | |
| }, | |
| }, | |
| "terminal.integrated.defaultProfile.osx": "warp", | |
| "editor.guides.indentation": false, | |
| "editor.guides.highlightActiveIndentation": false, | |
| "editor.fontWeight": "600", | |
| "terminal.integrated.enableMultiLinePasteWarning": false, | |
| "git.useEditorAsCommitInput": false, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment