added neovim

This commit is contained in:
2024-02-27 12:00:15 -05:00
parent 6d007ba2f7
commit c6af5c0161
26 changed files with 616 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [
noevim
];
home.file.".config/nvim/" = {
source = ./nvim;
recursive = true;
};
}