riverdelta/vscode
2023-08-03 12:02:09 +02:00
..
.vscode add vscode extension 2023-08-03 11:33:07 +02:00
syntaxes improve ext 2023-08-03 11:50:24 +02:00
.vscodeignore add vscode extension 2023-08-03 11:33:07 +02:00
CHANGELOG.md add vscode extension 2023-08-03 11:33:07 +02:00
language-configuration.json add vscode extension 2023-08-03 11:33:07 +02:00
package.json improve ext 2023-08-03 11:57:50 +02:00
README.md vscode readme 2023-08-03 12:02:09 +02:00
vsc-extension-quickstart.md add vscode extension 2023-08-03 11:33:07 +02:00

riverdelta

language support for the riverdelta language.

installation

normal

copy this directory into your .vscode/extensions

nix

if you use nix to manage extensions you can just copy

pkgs.vscode-utils.buildVscodeExtension {
    name = "riverdelta";
    version = "0.1.0";
    src = builtins.fetchGit {
        url = "https://github.com/Nilstrieb/riverdelta";
        rev = "86dec70f686964615a93c5316aae460bc0fc5d6d";
    };
    vscodeExtPublisher = "Nilstrieb";
    vscodeExtName = "riverdelta";
    vscodeExtUniqueId = "Nilstrieb.riverdelta";
    buildPhase = ''
        runHook preBuild;
        cd ./vscode
        runHook postBuild;
    '';
}

which probably works i think (maybe you want to update the hash to something newer although its unlikey this extension will change that much)