This commit is contained in:
암냥 2026-07-05 13:31:18 +09:00
commit e6b0f38caa
No known key found for this signature in database
32 changed files with 44 additions and 88 deletions

View file

@ -1,23 +0,0 @@
{
pkgs,
config,
lib,
...
}:
{
programs.neovim = {
enable = true;
withRuby = true;
withPython3 = true;
viAlias = true;
vimAlias = true;
};
home.activation.nvimConfigRepo = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
target="${config.xdg.configHome}/nvim"
rm -rf "$target"
${pkgs.git}/bin/git clone https://git.pari.ng/imnyang/nvim-config.git "$target"
'';
}