feat: first commit

This commit is contained in:
Patrick
2025-08-09 09:40:16 +02:00
committed by Superredstone
commit 0b4617b552
20 changed files with 1389 additions and 0 deletions

20
README.md Normal file
View File

@@ -0,0 +1,20 @@
# 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
];
};
```