> I have created a language specifically designed for making logic
> circuits but noticed vim has no idea how to color code it... how I
> start to teach it?
>
Hi!
The mechanism for highlighting specific text is based on the `:match` command.
It requires a highlight group as first argument and a regex as second argument.
You can write a file with a `:match` per line, and source it for the appropriate filetype.
Help references:
`:h :match` / `:h ftdetect` / `:h :syntax`.
Tris'