Created
August 12, 2022 00:40
-
-
Save jago86/a024fe626ef040566bf50c4bb87ae705 to your computer and use it in GitHub Desktop.
VS Code 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.hover.enabled": false, | |
| "php.executablePath": "/usr/bin/php", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "files.insertFinalNewline": true, | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontSize": 32, | |
| "editor.scrollBeyondLastLine": true, | |
| // "window.title": "${activeEditorFull}${separator}${rootName}", | |
| "files.trimTrailingWhitespace": true, | |
| "editor.wordWrap": "off", | |
| "editor.formatOnPaste": true, | |
| "editor.multiCursorModifier": "alt", | |
| "editor.snippetSuggestions": "top", | |
| // Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
| "editor.lineHeight": 47, | |
| // Enables font ligatures | |
| "editor.fontLigatures": true, | |
| // Controls if file decorations should use badges. | |
| "explorer.decorations.badges": false, | |
| "editor.renderLineHighlight": "none", | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "terminal.integrated.scrollback": 100000, | |
| "window.title": "${activeEditorMedium}${separator}${rootName}", | |
| "explorer.openEditors.visible": 0, | |
| "markdown.preview.fontFamily": "Hacke\"stem, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'Ubuntu', 'Droid Sans', sans-serif", | |
| "editor.quickSuggestions": { | |
| "other": true, | |
| "comments": false, | |
| "strings": true | |
| }, | |
| "editor.wordBasedSuggestions": true, | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/bower_components": true, | |
| "**/vendor": true, | |
| }, | |
| "files.watcherExclude": { | |
| "**/vendor/**": true | |
| }, | |
| "workbench.colorCustomizations": { | |
| "activityBarBadge.background": "#C6FF00", | |
| "list.activeSelectionForeground": "#C6FF00", | |
| "list.inactiveSelectionForeground": "#C6FF00", | |
| "list.highlightForeground": "#C6FF00", | |
| "scrollbarSlider.activeBackground": "#C6FF0050", | |
| "editorSuggestWidget.highlightForeground": "#C6FF00", | |
| "textLink.foreground": "#C6FF00", | |
| "progressBar.background": "#C6FF00", | |
| "pickerGroup.foreground": "#C6FF00", | |
| "tab.activeBorder": "#C6FF00", | |
| "notificationLink.foreground": "#C6FF00", | |
| "editorWidget.resizeBorder": "#C6FF00", | |
| "editorWidget.border": "#C6FF00", | |
| "settings.modifiedItemIndicator": "#C6FF00", | |
| "settings.headerForeground": "#C6FF00", | |
| "panelTitle.activeBorder": "#C6FF00", | |
| "breadcrumb.activeSelectionForeground": "#C6FF00", | |
| "menu.selectionForeground": "#C6FF00", | |
| "menubar.selectionForeground": "#C6FF00", | |
| "editor.findMatchBorder": "#C6FF00", | |
| "selection.background": "#C6FF0040", | |
| "activityBar.activeBorder": "#C6FF00" | |
| }, | |
| "materialTheme.accent": "Acid Lime", | |
| "php.suggest.basic": false, | |
| "terminal.integrated.fontFamily": "Hack", | |
| "editor.renderControlCharacters": true, | |
| "workbench.editor.showTabs": false, | |
| "workbench.sideBar.location": "right", | |
| "workbench.statusBar.visible": true, | |
| "editor.occurrencesHighlight": true, | |
| "phpunit.colors": "", | |
| "window.titleBarStyle": "custom", | |
| "settingsSync.keybindingsPerPlatform": false, | |
| "workbench.colorTheme": "Night Owl", | |
| "[dart]": { | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [ | |
| 80 | |
| ], | |
| "editor.selectionHighlight": false, | |
| "editor.suggest.snippetsPreventQuickSuggestions": false, | |
| "editor.suggestSelection": "first", | |
| "editor.tabCompletion": "onlySnippets", | |
| "editor.wordBasedSuggestions": false | |
| }, | |
| "editor.inlineSuggest.enabled": true, | |
| "github.copilot.enable": { | |
| "*": false, | |
| "yaml": false, | |
| "plaintext": false, | |
| "markdown": false, | |
| "php": false, | |
| "blade": false, | |
| "vue": false, | |
| "html": true | |
| }, | |
| "terminal.integrated.fontSize": 25, | |
| "workbench.activityBar.visible": false, | |
| "terminal.integrated.profiles.osx": { | |
| "zsh":{ | |
| "path": "/bin/zsh" | |
| } | |
| }, | |
| "terminal.integrated.defaultProfile.osx": "zsh", | |
| "breadcrumbs.enabled": false, | |
| "githd.blameView.enabled": true, | |
| "codesnap.showLineNumbers": false, | |
| "terminal.integrated.enableMultiLinePasteWarning": false, | |
| "editor.minimap.enabled": false, | |
| "[vue]": { | |
| "editor.defaultFormatter": "Vue.volar" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment