An opiniated neovim config, written almost is Lua but set up with Nix!
You can run with the sane default with nix-flake
:
nix run github:zoedsoupe/lvim#apps.<system>.lvim
Where <system>
is your system architecture.
You can use this config in your personal nix config using the overlay provieded, as:
{
inputs = {
# ...
lvim.url = "github:zoedsoupe/lvim";
};
outputs = { lvim, ... }:
let
overlays = [ lvim.overlays."${system}".default ];
in
{
# ...
};
}