TODO: Fill in README template fields
flake:
# In flake.nix
inputs.alicorn-vscode-extension = {
url = "github:Fundament-Software/alicorn-vscode-extension";
# optionally follow your own nixpkgs/flake-utils inputs
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
# Where you configure your vscode in home-manager
# alicorn-vscode-extension needs to be the alicorn-vscode-extension flake input
programs.vscode.extensions = [
alicorn-vscode-extension.packages.${pkgs.system}.alicorn-vscode-extension
];
non-flake:
# Fetch the extension
let alicorn-vscode-extension = pkgs.fetchFromGitHub {
owner = "Fundament-Software";
repo = "alicorn-vscode-extension";
## Update rev and hash
rev = "some rev";
hash = "sha256-1ygmGX/FIK1wBPoVnnDJq1d2ptP7/ZxgCNZKUsCAHaQ=";
};
# Where you configure your vscode in home-manager
programs.vscode.extensions = [
(pkgs.callPackage "${alicorn-vscode-extension}/alicorn-vscode-extension.nix" {};)
];
vscode extension for the Alicorn language
Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file.
For example if there is an image subfolder under your extension project workspace:

Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
None yet. Likely needs an alicorn language server on PATH in the future.
Include if your extension adds any VS Code settings through the contributes.configuration
extension point.
For example:
This extension contributes the following settings:
myExtension.enable
: Enable/disable this extension.myExtension.thing
: Set toblah
to do something.
Not yet published
Initial release of ...