feat: release lazyVim 1.0.0

This commit is contained in:
2024-03-24 18:25:13 +02:00
parent 89a9730e2a
commit 2edcb2d5a7
28 changed files with 160 additions and 72 deletions

12
packages/lazyVim.nix Normal file
View File

@@ -0,0 +1,12 @@
{pkgs}: let
config = import ../config {inherit pkgs;};
runtimeDeps = import ../runtimeDeps.nix {inherit pkgs;};
in
pkgs.wrapNeovim pkgs.neovim {
viAlias = true;
vimAlias = true;
withNodeJs = true;
withPython3 = true;
withRuby = false;
extraMakeWrapperArgs = ''--prefix PATH : "${pkgs.lib.makeBinPath runtimeDeps.dependencies}" --set XDG_CONFIG_HOME "${config}"'';
}