Created
July 19, 2023 08:14
-
-
Save hamrammi/1ec6182ebf83ce96b1b6c36f68fba24d 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.tabSize": 2, | |
"editor.lineHeight": 28, | |
"files.associations": { "*.module": "php" }, | |
"diffEditor.renderSideBySide": true, | |
"editor.fontSize": 15, | |
"editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace", | |
"workbench.colorTheme": "Default High Contrast", | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": false, | |
"terminal.integrated.fontSize": 13, | |
"workbench.iconTheme": "material-icon-theme", | |
"material-icon-theme.files.color": "#90a4ae", | |
"material-icon-theme.folders.color": "#90a4ae", | |
"material-icon-theme.folders.theme": "classic", | |
"material-icon-theme.opacity": 1, | |
"material-icon-theme.saturation": 1, | |
"material-icon-theme.activeIconPack": "react_redux", | |
"material-icon-theme.hidesExplorerArrows": true, | |
"workbench.tree.indent": 18, | |
"workbench.tree.renderIndentGuides": "always", | |
"workbench.editor.showTabs": false, | |
"files.insertFinalNewline": true, | |
"workbench.colorCustomizations": { | |
"[Default High Contrast]": { | |
"panelTitle.activeBorder": "#ff000000", | |
"editor.lineHighlightBorder": "#616183", | |
"editor.lineHighlightBackground": "#22112292", | |
"editor.background": "#111", | |
"contrastBorder": "#aaa", | |
"editorWhitespace.foreground": "#444", | |
"editorIndentGuide.background": "#44444444", | |
"editorIndentGuide.activeBackground": "#999", | |
"editorLineNumber.foreground": "#888", | |
"editorLineNumber.activeForeground": "#fff", | |
"editor.selectionBackground": "#616183", | |
"diffEditor.insertedTextBackground": "#00ff0030", | |
"diffEditor.insertedTextBorder": "#00ff0020", | |
"diffEditor.removedTextBackground": "#ff000030", | |
"diffEditor.removedTextBorder": "#ff000020" | |
} | |
}, | |
"editor.quickSuggestions": { | |
"other": "on", | |
"comments": "off", | |
"strings": "on" | |
}, | |
"typescript.preferences.quoteStyle": "double", | |
"typescript.format.semicolons": "remove" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment