storopoli / helix

My Minimalist Helix config.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NixOS/macOS Flake

License: MIT

My Minimalist Helix config. Banish those unworthy soydev IDEs to the depths of Hell!

Screenshot

How to Use

Just run anywhere with Nix:

nix run github:storopoli/helix

Or clone the repo and run:

nix run .

Additionally, you can use it as a flake:

{
  # ...
  inputs.neovix = {
    url = "github:storopoli/helix";
    inputs = {
      nixpkgs.follows = "nixpkgs";
      flake-parts.follows = "flake-parts";
    };
  };

  outputs = inputs @ { self, ... }:
  {
    imports = [
      {
        nixpkgs.overlays = [
          # ...
          inputs.neovix.overlays.default
        ];
      }
    ];
  };

}

Then helix will be available as pkgs.helix.

License

The source code is licensed under a MIT License.

About

My Minimalist Helix config.


Languages

Language:Nix 100.0%