Created
February 3, 2021 16:56
-
-
Save kennith/df1d43049383134852f0a3c61567f707 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
| { | |
| // Sensible defaults | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "workbench.editor.enablePreview": false, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "files.trimTrailingWhitespace": true, | |
| "window.nativeFullScreen": false, | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| // Layout | |
| "workbench.activityBar.visible": false, | |
| "workbench.sideBar.location": "right", | |
| "editor.minimap.enabled": false, | |
| // Noise | |
| "breadcrumbs.enabled": false, | |
| // Prettify | |
| "workbench.preferredDarkColorTheme": "GitHub Dark", | |
| "workbench.preferredLightColorTheme": "GitHub Light", | |
| "workbench.iconTheme": "file-icons-colourless", | |
| "editor.fontFamily": "'Roboto Mono', 'Cascadia Code', Menlo, Monaco, 'Courier New', monospace ", | |
| "editor.fontSize": 15, | |
| "editor.lineHeight": 35, | |
| "window.title": "${activeEditorLong}", | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.lineHeight": 1.25, | |
| // | |
| "editor.snippetSuggestions": "top", | |
| "git.autofetch": true, | |
| "explorer.confirmDragAndDrop": false, | |
| "blade.format.enable": true, | |
| "window.restoreWindows": "none", | |
| "workbench.startupEditor": "none", | |
| "editor.showFoldingControls": "always", | |
| "editor.cursorSurroundingLines": 5, | |
| "php.suggest.basic": false, | |
| "editor.formatOnType": true, | |
| "editor.formatOnSave": true, | |
| "editor.formatOnPaste": true, | |
| "editor.renderControlCharacters": false, | |
| "diffEditor.renderSideBySide": false, | |
| "editor.scrollBeyondLastLine": false, | |
| "gitlens.currentLine.scrollable": false, | |
| // Language Specific | |
| "emmet.includeLanguages": { | |
| // "blade": "html", | |
| "vue-html": "html", | |
| "vue": "html" | |
| }, | |
| "[blade]": { | |
| "editor.snippetSuggestions": "none", | |
| "editor.rulers": [ | |
| 80, | |
| 100 | |
| ], | |
| "editor.wordWrap": "on" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[php]": { | |
| "editor.snippetSuggestions": "none", | |
| "editor.rulers": [ | |
| 80, | |
| 100 | |
| ], | |
| "editor.wordWrapColumn": 120, | |
| "editor.wordWrap": "on", | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | |
| }, | |
| "[markdown]": { | |
| "editor.wordWrap": "wordWrapColumn", | |
| "editor.wordWrapColumn": 100, | |
| "editor.rulers": [ | |
| 0, | |
| 100 | |
| ], | |
| "editor.lineNumbers": "off", | |
| }, | |
| "[vue]": { | |
| "editor.defaultFormatter": "octref.vetur" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "window.zoomLevel": 0, | |
| "workbench.editor.showTabs": true, | |
| "[python]": { | |
| // "editor.defaultFormatter": "ms-python.python" | |
| }, | |
| "python.showStartPage": false, | |
| "html.format.wrapLineLength": 0, | |
| "workbench.colorTheme": "GitHub Light", | |
| "gitlens.codeLens.enabled": false, | |
| "terminal.integrated.copyOnSelection": true, | |
| "workbench.colorCustomizations": { | |
| "terminal.background": "#2e3440", | |
| "terminal.foreground": "#d8dee9", | |
| "terminal.ansiBlack": "#3b4252", | |
| "terminal.ansiRed": "#bf616a", | |
| "terminal.ansiGreen": "#a3be8c", | |
| "terminal.ansiYellow": "#ebcb8b", | |
| "terminal.ansiBlue": "#81a1c1", | |
| "terminal.ansiMagenta": "#b48ead", | |
| "terminal.ansiCyan": "#88c0d0", | |
| "terminal.ansiWhite": "#e5e9f0", | |
| "terminal.ansiBrightBlack": "#4c566a", | |
| "terminal.ansiBrightRed": "#bf616a", | |
| "terminal.ansiBrightGreen": "#a3be8c", | |
| "terminal.ansiBrightYellow": "#ebcb8b", | |
| "terminal.ansiBrightBlue": "#81a1c1", | |
| "terminal.ansiBrightMagenta": "#b48ead", | |
| "terminal.ansiBrightCyan": "#8fbcbb", | |
| "terminal.ansiBrightWhite": "#eceff4", | |
| }, | |
| "window.autoDetectColorScheme": true, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment