Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zoedsoupe/lvim

An opiniated neovim config, written almost is Lua but set up with Nix!
https://github.com/zoedsoupe/lvim

lsp lua neovim nix

Last synced: 17 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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`:

```sh
nix run github:zoedsoupe/lvim#apps..lvim
```

Where `` is your system architecture.

## Add to Nix Flake project

You can use this config in your personal nix config using the overlay provieded, as:

```nix
{
inputs = {
# ...
lvim.url = "github:zoedsoupe/lvim";
};

outputs = { lvim, ... }:
let
overlays = [ lvim.overlays."${system}".default ];
in
{
# ...
};
}
```