Editor Integrations

Visual Studio Code

The Vento for Visual Studio Code extension enables syntax highlighting and provides some useful snippets.

Quick Install

Open VSX Registry

Vento plugin is also available in Open VSX.

Neovim

Vento syntax highlighting is available for Neovim through nvim-treesitter.

To use it, add the "vento" filetype

vim.filetype.add({
    extension = {
        vto = "vento",
    }
})

And install the "vento" parser with TSInstall, or add it to the ensure_installed list in the setup function.

It's also recommended to install "javascript" and "html" parsers to get better syntax highlighting inside vento files.

require("nvim-treesitter.configs").setup({
    ensure_installed = { "vento", "html", "javascript", "..." },
})

Zed

The Vento extension for Zed provides syntax highlighting. It can be installed from the Zed extensions gallery.