{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"workbench.startupEditor": "newUntitledFile",
"prettier.arrowParens": "always",
"terminal.integrated.fontSize": 15,
"terminal.integrated.letterSpacing": 1,
"terminal.integrated.lineHeight": 2,
"git.autofetch": true,
"git.suggestSmartCommit": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"diffEditor.ignoreTrimWhitespace": false,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorTheme": "Dark++ Italic",
"editor.formatOnSave": true,
"editor.letterSpacing": 0.5,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.colorCustomizations": {
"activityBar.background": "#0e0b0b",
"editor.background": "#000",
"sideBar.background": "#0c0b0b",
"sideBar.foreground": "#fff"
},
"editor.tokenColorCustomizations": {
// "textMateRules": [
// {
// "scope": "comment",
// "settings": {
// "fontStyle": "italic"
// }
// }
// ],
"comments": "#a7a4ac",
"strings": "#fdce12",
// "strings": "#f6c70e",
// "strings": "#7ed07e",
"keywords": "#f39c12",
"numbers": "#dda0dd",
"types": "#f2ca27",
// "functions": "#08b8cf",
"functions": "#7ed07e",
// "functions": "#7ed07e",
// "variables": "#08b8cf",
// "variables": "#7ed07e"
"textMateRules": [
{
"scope": [
"constant",
"comment",
"variable",
"number",
"type",
"meta.function",
"meta.function-call", //function call
"entity.name.type.class", //class names
"keyword", //import, export, returnβ¦
"storage.modifier", //static keyword
"storage.type", //class keyword
"support.class.builtin",
"keyword.control",
"constant.language",
"entity.other.attribute-name",
"string.quoted.single",
"entity.name.method",
"entity.name.tag"
], // array of Scopes to which the style should be applied to
"settings": {
"fontStyle": "italic" // the font style that should be applied
}
},
{
"scope": "punctuation",
"settings": {
"foreground": "#ffffff"
}
}
]
// --syntax-background-color: #08090a;
// --syntax-text-color: #f8f8f2;
// --syntax-comment-color: #808080;
// --syntax-declaration-color: #f39c12;
// --syntax-literal-color: #dda0dd;
// --syntax-error-color: #f9690e;
// --syntax-name-color: #7ed07e;
// --syntax-string-color: #f2ca27;
},
// I added this section
"editor.accessibilityPageSize": 9,
"editor.fontLigatures": true,
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": "/dist/css"
}
],
"leetcode.workspaceFolder": "/Users/sandeepamarnath/Coding/LeetCode/LeetCodeFromVsCode",
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": ["document"]
},
"editor.fontSize": 21,
"editor.lineHeight": 33,
"editor.fontFamily": "Fira Code iScript,Menlo, Monaco, 'Courier New', monospace"
// "editor.renderIndentGuides": false
}