VS Code Extensions
Kryos

Kryos

by northtekdevs

Kryos language support — syntax highlighting, snippets, and LSP integration

Downloads

1

Rating

(0)

Version

0.4.0

Last updated

Jul 02, 2026

Syntax highlighting, snippets, and Language Server integration for the Kryos programming language.

Features

  • Syntax highlighting for .kry files
  • Snippets for common Kryos constructs
  • Language Server support: diagnostics, hover, completion, goto-definition (via kryos lsp)

Setup

  1. Install the Kryos toolchain so that the kryos binary is on your PATH:

    curl -fsSL https://raw.githubusercontent.com/NORTHTEKDevs/kryos-lang/master/install.sh | sh
    
  2. Install this extension.

  3. (Optional) point the extension at a specific binary via kryos.serverPath in your VS Code settings.

Building from source

cd editors/vscode
npm install
npm run compile          # produces out/extension.js
# Press F5 in VS Code with this folder open to launch an Extension Development Host.

Packaging for the Marketplace

cd editors/vscode
npm install
npm run compile
npm run package            # produces kryos-<version>.vsix
# or, with @vscode/vsce installed globally:
#   vsce package

The resulting .vsix can be installed in VS Code via: Command Palette → "Extensions: Install from VSIX..."

Publishing requires a vsce publisher token for the northtekdevs publisher:

vsce login northtekdevs
npm run publish

Configuration

Setting Default Description
kryos.serverPath kryos Path to the Kryos binary that hosts the language server.
kryos.serverArgs ["lsp"] Args passed to the Kryos binary to start the LSP.
kryos.trace.server off LSP trace level (off / messages / verbose).

Related extensions