Last active
February 6, 2019 21:41
-
-
Save damionvega/f5316efdee93d75956094e1096303ca7 to your computer and use it in GitHub Desktop.
VSCode settings
This file contains 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
{ | |
"window.zoomLevel": 0, | |
"bracketPairColorizer.consecutivePairColors": [ | |
"()", | |
"[]", | |
"{}", | |
["Orange", "Orchid", "LightSkyBlue"], | |
"Red" | |
], | |
"breadcrumbs.enabled": true, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 15, | |
// "editor.fontWeight": "300" // Light | |
"editor.fontWeight": "500", // Regular | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.minimap.showSlider": "always", | |
"editor.renderControlCharacters": false, | |
"editor.tabSize": 2, | |
"editor.tokenColorCustomizations": { | |
"[Gruvbox Dark (Medium)]": { | |
"textMateRules": [ | |
{ | |
"scope": "punctuation.terminator.statement.js", | |
"settings": { | |
"foreground": "#444" | |
} | |
} | |
] | |
}, | |
"[Harmonic16 Light Theme]": { | |
"textMateRules": [ | |
{ | |
"scope": "punctuation.terminator.statement.js", | |
"settings": { | |
"foreground": "#DDD" | |
} | |
} | |
] | |
} | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true, | |
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"[markdown]": { | |
"editor.formatOnSave": true, | |
"editor.wordWrap": "on", | |
"editor.renderWhitespace": "all" | |
}, | |
"stylusSupremacy.insertBraces": false, | |
"stylusSupremacy.insertColons": false, | |
"stylusSupremacy.insertSemicolons": false, | |
"stylusSupremacy.insertNewLineBetweenSelectors": true, | |
"vim.useSystemClipboard": true, | |
"workbench.editor.enablePreview": true, | |
"workbench.colorTheme": "Gruvbox Dark (Medium)", | |
// "workbench.colorTheme": "Harmonic16 Light Theme", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#561C86", | |
"statusBar.noFolderBackground": "#561C86", | |
"statusBar.debuggingBackground": "#561C86" | |
}, | |
"prettier.eslintIntegration": true, | |
"prettier.trailingComma": "es5", | |
"prettier.singleQuote": true, | |
"prettier.semi": false, | |
"vim.mouseSelectionGoesIntoVisualMode": false, | |
"vim.scroll": 5, | |
"scrolloff.scrolloff": 20 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment