Skip to content

Instantly share code, notes, and snippets.

@heyy-josval
Last active July 3, 2023 11:36
Show Gist options
  • Save heyy-josval/5430fb3d9217f1a6d72d4626e9c74825 to your computer and use it in GitHub Desktop.
Save heyy-josval/5430fb3d9217f1a6d72d4626e9c74825 to your computer and use it in GitHub Desktop.
vs code personal config
{
// EXTENSIONS
// - Indenticator
// - Frontend Essentials Extension Pack
// - svelte
// - Subtle match
"editor.fontFamily": "Iosevka",
"terminal.integrated.fontFamily": "Iosevka Term",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"editor.matchBrackets": "never",
"workbench.productIconTheme": "fluent-icons",
"workbench.colorTheme": "Min Dark",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"window.zoomLevel": 1,
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": false,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.overviewRulerBorder": false,
"editor.wordWrap": "on",
"editor.hideCursorInOverviewRuler": true,
"editor.guides.indentation": false,
"indenticator.width": 0.1,
"indenticator.color.dark": "rgba(255,255,255,0.1)",
"breadcrumbs.enabled": false,
"editor.glyphMargin": false,
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"svelte.enable-ts-plugin": true,
"symbols.hidesExplorerArrows": false,
"workbench.iconTheme": "symbols",
"prettier.tabWidth": 3,
"editor.tabSize": 3,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"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": ""
}
},
{
"scope": ["entity.name.function", "storage.type.js"],
"settings": {
"fontStyle": "bold"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment