| Vaja Syntax Highlighting for VS Code
Vaja Language ExtensionSyntax highlighting & developer support for
 .vajafiles in Visual Studio Code 
 ✨ Features
Beautiful syntax highlighting for the Vaja programming language
Keywords (func,if,else, etc.)Types (int,long,bool,string,void)Operators (<-,==,+,-, etc.)Strings, numbers, booleansFunction calls, variables, parametersComments (line/block)Custom theme scopes: assignment operator <-and other language features have unique highlighting.Ready for customization: Easily tweak colors in your own VS Code theme settings.File association: Automatically activates for .vajafiles. 
 🚀 Getting Started
Install from the MarketplaceSearch for
 Vajain the VS Code Extensions view (Ctrl+Shift+X) and click Install.Open or create a .vajafileSyntax highlighting and language features will be enabled automatically.
 
 🎨 Custom Theme (Optional)This extension bundles a dark theme with dedicated colors for Vaja-specific syntax. 
To enable:Go to Preferences > Color Theme and select Vaja Dark.
 Want to customize further?Add custom scopes like this to your VS Code
 settings.json: "editor.tokenColorCustomizations": {
  "textMateRules": [
    {
      "scope": "keyword.operator.assignment.vaja",
      "settings": {
        "foreground": "#FF79C6",
        "fontStyle": "bold"
      }
    }
  ]
}
 |  |