Files
nvim/packages/lazyVim.nix
Mykhailo Nikiforov aef12de964
All checks were successful
check-flake / build (push) Successful in 17m41s
feat: update nvim package
2024-11-14 19:53:26 +02:00

14 lines
388 B
Nix

{ 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}"'';
}