Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 618 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 618 Bytes

lvim

An opiniated neovim config, written almost is Lua but set up with Nix!

Executing

You can run with the sane default with nix-flake:

nix run github:zoedsoupe/lvim#apps.<system>.lvim

Where <system> is your system architecture.

Add to Nix Flake project

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
        {
            # ...
        };
}