DEV Community

Discussion on: Tips to use VSCode more efficiently

Collapse
 
borisimple profile image
Boris Krstić

Thanks for the cool list!

I am using flat "Material Theme" and I love it!

The only thing I was trying to add to the theme was bold function names. Now I love it even more :)

Here's a code snippet if someone is interested :)

 "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": "entity.name.function",
        "settings": {
          "fontStyle": "bold"
        }
      }
    ]
  }
Collapse
 
drawcard profile image
Drawcard

This is fantastic

Collapse
 
gherciu profile image
Gherciu Gheorghe

awesome!thanks! ;)

Collapse
 
selrond profile image
Sebastian Andil

Brilliant!
I've slightly modified it to include console.log()-like function calls as well:

  "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": [
          "entity.name.function",
          "support.function"
        ],
        "settings": {
          "fontStyle": "bold"
        }
      }
    ]
  }
Collapse
 
borisimple profile image
Boris Krstić

And I'll be using it! Thanks :)