add nixvim as text editor

This commit is contained in:
Gabriella Bere 2024-09-01 13:41:49 +01:00
parent 90e5c5528b
commit da68527e3c
2 changed files with 8 additions and 1 deletions

7
home-manager/nixvim.nix Normal file
View file

@ -0,0 +1,7 @@
{config, pkgs, ... }: {
programs.nixvim = {
enable = true;
plugins.neotree.enable = true;
};
}