No description
Find a file
2026-04-24 03:11:30 -04:00
config miau codesnap :3 2026-04-17 16:37:51 -04:00
flake.lock update flake 2026-04-24 03:11:30 -04:00
flake.nix switch to official flake 2026-04-17 16:13:56 -04:00
README.md add {} around inputs 2026-04-11 10:19:31 -04:00

Universe.Nvim

Running

nix run git+https://git.uninetwork.net/the-universe/universe.nvim

Installation

Add this to your flake inputs

{
  inputs = {
    # ...
    universe-nvim.url = "git+https://git.uninetwork.net/the-universe/universe.nvim";
    # ...
  };
}

Then add the input as a system package with nixos or home-manager

{
  environment.systemPackages = [
    inputs.universe-nvim.packages.<your-system>.default
  ];
}