Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/zoedsoupe/lvim
- Owner: zoedsoupe
- License: wtfpl
- Created: 2023-05-28T14:19:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-08T21:15:02.000Z (about 1 year ago)
- Last Synced: 2024-02-17T15:34:04.422Z (9 months ago)
- Topics: lsp, lua, neovim, nix
- Language: Nix
- Homepage:
- Size: 210 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
{
# ...
};
}
```