Last active
September 20, 2019 18:49
-
-
Save AkashRajvanshi/e3df0221e6b66a40e85944d00d8690a8 to your computer and use it in GitHub Desktop.
Settings JSON Part 1
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
{ | |
"editor.fontFamily": "Fira Code iScript", | |
"editor.formatOnSave": false, | |
"editor.formatOnPaste": true, | |
"editor.fontSize": 16, | |
"editor.lineHeight": 25, | |
"editor.fontWeight": "400", | |
"editor.tabSize": 2, | |
"editor.cursorWidth": 5, | |
"editor.letterSpacing": 0.5, | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"editor.roundedSelection": false, | |
"editor.autoClosingBrackets": true, | |
"editor.cursorBlinking": "solid", | |
"editor.renderIndentGuides": false, | |
"editor.renderWhitespace": "all", | |
"editor.accessibilitySupport": "off", | |
"editor.scrollBeyondLastLine": false, | |
"editor.useTabStops": true, | |
"editor.cursorStyle": "block", | |
"editor.wordWrap": "on", | |
"editor.autoIndent": true, | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": true, | |
"editor.showFoldingControls": "always", | |
"editor.find.seedSearchStringFromSelection": true, | |
"editor.matchBrackets": true, | |
"editor.snippetSuggestions": "top", | |
"editor.minimap.showSlider": "always", | |
"editor.colorDecorators": true, | |
"editor.hideCursorInOverviewRuler": false, | |
"editor.lightbulb.enabled": false, | |
"editor.smoothScrolling": true, | |
"editor.scrollBeyondLastColumn": 0, | |
"editor.minimap.renderCharacters": false, | |
"editor.quickSuggestionsDelay": 500, | |
"editor.parameterHints.enabled": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [{ | |
"scope": [ | |
"comment", | |
"entity.name.type.class", | |
"keyword", | |
"constant", | |
"storage.modifier", | |
"storage.type.class.js", | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"editor.rulers": [ | |
100, | |
100 | |
], |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment