Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 376 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 376 Bytes

Nixvim

Screenshot

Run

nix run github:Sly-Harvey/nixvim

Install on NixOS

Add this to your flake.nix

nixvim.url = "github:Sly-Harvey/nixvim";

Then in your home-manager configuration add this

{ inputs, pkgs, ... }:

{
    home.packages = with pkgs; [
        inputs.nixvim.packages.${system}.default
    ];
}