Created
August 19, 2021 16:32
-
-
Save knice/61fc823e7c0a23a9882fedda9cc0f012 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.fontSize": 13, | |
| "editor.fontFamily": "'Fira Code', 'JetBrains Mono', 'Source Code Pro', 'Input Mono', 'Menlo'", | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.matchBrackets": "near", | |
| "terminal.integrated.confirmOnExit": false, | |
| "emmet.triggerExpansionOnTab": true, | |
| "editor.quickSuggestions": true, | |
| "editor.formatOnPaste": true, | |
| "editor.lineHeight": 20, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "workbench.fontAliasing": "auto", | |
| "editor.wordWrap": "on", | |
| "diffEditor.renderSideBySide": false, | |
| "workbench.tree.indent": 20, | |
| "html.format.indentInnerHtml": true, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "emmet.includeLanguages": { | |
| "jekyll": "html", | |
| "scss": "css" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "workbench.colorCustomizations": { | |
| // "activityBar.background": "#e2e2e2", | |
| // "activityBar.foreground": "#333", | |
| // "activityBarBadge.background": "#3f91e4", | |
| // "activityBar.inactiveForeground": "#666", | |
| "editorIndentGuide.activeBackground": "#12afc4", | |
| "editorIndentGuide.background": "#3f3f3f", | |
| // "sideBar.background": "#525252", | |
| // "sideBar.foreground": "#beccd3", | |
| // "sideBar.border": "#FAFAFA60", | |
| // "sideBarTitle.foreground": "#90A4AE", | |
| // "sideBarSectionHeader.background": "#3a3c46", | |
| // "sideBarSectionHeader.border": "#FAFAFA60", | |
| // "list.activeSelectionBackground":"#dbdbdb", | |
| // "list.activeSelectionForeground": "#333333", | |
| // "list.inactiveSelectionForeground": "#bebbbb", | |
| // "list.hoverBackground": "#999", | |
| // "list.hoverForeground": "#fff", | |
| // "titleBar.activeBackground": "#e2e2e2", | |
| // "titleBar.activeForeground": "#333" | |
| // "terminal.foreground": "#ffffff", | |
| // "terminal.background": "#1f373f", | |
| "[Sublime Oceanic After Next Theme Mariana]": { | |
| "tab.inactiveForeground":"#cccccc" | |
| } | |
| }, | |
| "workbench.editor.decorations": true, | |
| "terminal.integrated.lineHeight": 1.2, | |
| "liquid.format": false, | |
| "editor.minimap.enabled": false, | |
| "auto-close-tag.SublimeText3Mode": true, | |
| "terminal.integrated.fontWeight": "400", | |
| "terminal.integrated.fontWeightBold": "600", | |
| "editor.tabSize": 2, | |
| "editor.autoClosingQuotes": "beforeWhitespace", | |
| // "editor.codeActionsOnSave": null, | |
| "prettier.requireConfig": true, | |
| "editor.formatOnSave": true, | |
| "todo-tree.tree.showScanModeButton": false, | |
| "[markdown]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "workbench.editor.showTabs": true, | |
| "workbench.editorAssociations": { | |
| "*.jpg": "imagePreview.previewEditor", | |
| "*.ipynb": "jupyter.notebook.ipynb" | |
| }, | |
| "files.associations": { | |
| "*.vue": "vue" | |
| }, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[vue]": { | |
| "editor.quickSuggestions": { | |
| "other": true, | |
| "comments": false, | |
| "strings": false | |
| }, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "liveServer.settings.host": "localhost", | |
| "liveServer.settings.port": 5500, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "php.suggest.basic": false, | |
| "php.executablePath": "/usr/local/bin/php", | |
| "eslint.codeAction.showDocumentation": { | |
| "enable": true | |
| }, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "vue" | |
| ], | |
| "prettier.htmlWhitespaceSensitivity": "ignore", | |
| "write-good.languages": [ | |
| "markdown", | |
| "plaintext" | |
| ], | |
| "write-good.only-lint-on-save": false, | |
| "files.autoSave": "off", | |
| "todo-tree.tree.labelFormat": "${after}", | |
| "git.confirmSync": false, | |
| "todo.colors.light": { | |
| }, | |
| "todo.symbols.box": "-", | |
| "todo.symbols.done": "-", | |
| "todo.symbols.cancelled": "-", | |
| "todo-tree.general.tags": [ | |
| "BUG", | |
| "HACK", | |
| "FIXME", | |
| "TODO", | |
| "XXX", | |
| "[ ]", | |
| "[x]" | |
| ], | |
| "todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)", | |
| "aws.profile": "profile:default", | |
| "aws.onDefaultRegionMissing": "add", | |
| "workbench.colorTheme": "Sublime Oceanic After Next Theme Mariana", | |
| "workbench.iconTheme": "Monokai Pro (Filter Machine) Icons", | |
| "conventionalCommits.emojiFormat": "emoji", | |
| "workbench.editor.decorations.colors": false, | |
| "prettier.useEditorConfig": false, | |
| "terminal.integrated.fontFamily": "'Fira Code', 'JetBrains Mono', 'Source Code Pro', 'Cascadia Code'", | |
| "redhat.telemetry.enabled": true, | |
| "githubPullRequests.fileListLayout": "tree", | |
| "yaml.schemas": {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment