Files
nixvim/README.md
2026-02-08 10:16:40 +01:00

21 lines
313 B
Markdown

# My nixvim configuration
## How to run
```bash
nix run github:Superredstone/nixvim
```
## How to add to your configuration
```nix
inputs.nixvim.url = "github:Superredstone/nixvim"
```
```nix
environment = {
systemPackages = with pkgs; [
inputs.nixvim.packages.${system}.default
];
};
```