Created
June 9, 2020 14:48
-
-
Save pfftdammitchris/0d66d4c816a9886c709c1f731c8cca34 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
{ | |
"atomKeymap.promptV3Features": true, | |
"colorHelper.disableGpu": 1, | |
"colorHelper.formatsOrder": ["hex", "rgb"], | |
"colorHelper.pickerForm": "simple", | |
"colorHelper.resident": true, | |
"debug.console.fontSize": 10, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.autoClosingBrackets": "always", | |
"editor.autoIndent": "full", | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"editor.codeLens": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.fontFamily": "Fira Code, 'sans-serif'", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 10.5, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": true, | |
"editor.minimap.maxColumn": 100, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.renderControlCharacters": true, | |
"editor.tabSize": 2, | |
"editor.wordWrapColumn": 100, | |
"eslint.format.enable": true, | |
"eslint.lintTask.enable": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.associations": { | |
"*.cs": "csharp", | |
"*.cshtml": "razor", | |
"*.html": "html", | |
"*.js": "javascript", | |
"*.jsx": "javascriptreact", | |
"*.ts": "typescript", | |
"*.tsx": "typescriptreact" | |
}, | |
"git.autofetch": true, | |
"html.format.endWithNewline": true, | |
"html.format.wrapLineLength": 80, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"javascript.validate.enable": true, | |
"markdown.preview.fontSize": 13, | |
"materialTheme.accent": "Sky", | |
"merge-conflict.autoNavigateNextConflict.enabled": true, | |
"sync.gist": "91d0656e1718d67fa335be5dd081cc77", | |
"terminal.integrated.fontSize": 10, | |
"terminal.integrated.fontWeight": "100", | |
"terminal.integrated.fontWeightBold": "100", | |
"terminal.integrated.rendererType": "dom", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"todohighlight.defaultStyle": { | |
"backgroundColor": "none", | |
"border": "1px solid #2abdef", | |
"borderRadius": "20%", | |
"color": "#2abdef", | |
"overviewRulerColor": "rgba(0,0,0,0)" | |
}, | |
"todohighlight.keywords": [ | |
{ | |
"backgroundColor": "rgba(0, 0, 0, 0.5)", | |
"border": "1px solid magenta", | |
"borderRadius": "20%", | |
"color": "magenta", | |
"text": "NOTE:" | |
}, | |
{ | |
"backgroundColor": "rgba(0, 0, 0, 0.5)", | |
"border": "1px solid red", | |
"borderRadius": "20%", | |
"color": "red", | |
"text": "BUG:" | |
}, | |
{ | |
"backgroundColor": "none", | |
"border": "1px solid #2abdef", | |
"borderRadius": "20%", | |
"color": "#2abdef", | |
"overviewRulerColor": "rgba(0,0,0,0)", | |
"text": "TODO:" | |
} | |
], | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"window.menuBarVisibility": "default", | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": false, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#84FFFF", | |
"breadcrumb.activeSelectionForeground": "#84FFFF", | |
"editor.findMatchBorder": "#84FFFF", | |
"editor.foldBackground": "#004369", | |
"editorSuggestWidget.highlightForeground": "#84FFFF", | |
"editorWidget.border": "#84FFFF", | |
"editorWidget.resizeBorder": "#84FFFF", | |
"list.activeSelectionForeground": "#84FFFF", | |
"list.highlightForeground": "#84FFFF", | |
"list.inactiveSelectionForeground": "#84FFFF", | |
"menu.selectionForeground": "#84FFFF", | |
"menubar.selectionForeground": "#84FFFF", | |
"notificationLink.foreground": "#84FFFF", | |
"panelTitle.activeBorder": "#84FFFF", | |
"pickerGroup.foreground": "#84FFFF", | |
"progressBar.background": "#84FFFF", | |
"scrollbarSlider.activeBackground": "#84FFFF50", | |
"selection.background": "#84FFFF40", | |
"settings.headerForeground": "#84FFFF", | |
"settings.modifiedItemIndicator": "#84FFFF", | |
"tab.activeBorder": "#84FFFF", | |
"textLink.foreground": "#84FFFF" | |
}, | |
"workbench.colorTheme": "Material Theme High Contrast", | |
"workbench.iconTheme": "material-icon-theme" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment