Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Tomat0New to Visual Studio Code? Get it now.
Tomat0

Tomat0

christiantomato

|
1 install
| (0) | Free
A lightweight programming language extension for the Tomat0 (.tmt) language with syntax highlighting and editor support.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Tomat0 Syntax Highlighting

A syntax highlighting vscode extension for my custom programming language Tomat0. The extension enables syntax highlighting for .tmt files and editor support such as bracket pairing.

Installing the Extension

You can find the extension under my publishing name "christiantomato" on the vscode marketplace.

Using the Custom Tomat0 Settings (Optional):

To use the custom tomat0 color theme, copy and paste the following into your vscode user settings json file. A dark theme for vscode is recommended with these settings.

//custom token colors for tomat0
"editor.tokenColorCustomizations": {
    "textMateRules": [
        {
            "scope": "keyword.control.tomat0",
            "settings": {
                "foreground": "#ff7272"
            }
        },
        {
            "scope": "string.quoted.double.tomat0",
            "settings": {
                "foreground": "#a8ff78"
            }
        },
        {
            "scope": "constant.numeric.tomat0",
            "settings": {
                "foreground": "#e2ee9b"
            }
        },
        {
            "scope": "comment.line.tomat0",
            "settings": {
                "foreground": "#746587",
                "fontStyle": "italic"
            }
        }
    ]
},
//specific configurations for tomat0
"[tomat0]": {
    //disabled bracket pair colors
    "editor.bracketPairColorization.enabled": false
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft