Rust support
Currently only comments are highlighted, it'd be great to have full support
Strings and numbers (constants) are too. This is a minimalist theme, I don’t highlight anything else apart from those and comments.
Oh, I get it. So, the only thing that is missing are the global definitions (as stated in the README)? For example, on the following photo A, B, C, D, E, F, G, H and i:

This is a problem with Rust syntax plugin for VS Code. It doesn’t mark up function definition differently from function invocation. And I want to highlight definitions only (entity.global class in syntax)
Upon further research, the class should probably be named meta.definition (meta.definition.function.rust and meta.definition.type.rust). I could add that to the theme, but Rust syntax would still need to be updated. Also I’ll need to update Clojure syntax because it puts meta.definition at the wrong token. After that I could update the theme
^ is this correct? (https://github.com/Microsoft/vscode/pull/36748)
I think it should be both: entity.name and meta.definition. You can specify multiple classes:
"name": "entity.name.function.rust meta.definition.function.rust"
Waiting on https://github.com/atom/language-clojure/pull/75
also https://github.com/zargony/atom-language-rust/pull/123 I'm not sure if they'll ever merge it though, it looks dead