Created
July 7, 2024 15:56
-
-
Save al3rez/e3389c5baad21fa2ccd3ac061e13fb3a to your computer and use it in GitHub Desktop.
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": "Pragmata Pro", | |
"editor.lineHeight": 1.2, | |
"terminal.integrated.fontSize": 14, | |
"editor.fontSize": 14, | |
"editor.glyphMargin": false, | |
"editor.folding": false, | |
"editor.stickyScroll.enabled": false, | |
"editor.guides.indentation": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.lineNumbers": "off", | |
"window.commandCenter": false, | |
"workbench.layoutControl.enabled": false, | |
"editor.formatOnSave": true, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[erb]": { | |
"editor.defaultFormatter": "aliariff.vscode-erb-beautify", | |
"editor.formatOnSave": true | |
}, | |
"files.associations": { | |
"*.html.erb": "erb" | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "Shopify.ruby-lsp", | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"editor.rulers": [ | |
120 | |
], | |
"editor.semanticHighlighting.enabled": true | |
}, | |
"tailwind-fold.autoFold": false, | |
"workbench.statusBar.visible": false, | |
"workbench.colorTheme": "GitHub Light", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
//following will be in italic (=FlottFlott) | |
"comment", | |
"keyword", //import, export, return… | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"breadcrumbs.enabled": false, | |
"sync.gist": "e101c20d8e1179c166520ff44d25fb41" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment