lazy.nvim.nix/default.nix

16 lines
431 B
Nix
Raw Normal View History

2024-05-04 17:40:22 +02:00
{ lib, pkgs }:
2024-05-05 16:18:30 +02:00
let
luaUtils = import ./pkgs/luaUtils.nix { inherit lib pkgs; };
lazyUtils = import ./pkgs/lazyUtils.nix { inherit lib luaUtils pkgs; };
wrapNeovimLazy = pkgs.callPackage ./pkgs/wrapper.nix { inherit lazyUtils; };
in
2024-05-04 17:40:22 +02:00
{
# https://github.com/NixOS/rfcs/pull/166
formatter = pkgs.nixfmt-rfc-style;
2024-05-05 16:18:30 +02:00
packages = {
inherit wrapNeovimLazy;
neovim-lazy = wrapNeovimLazy pkgs.neovim-unwrapped { };
};
2024-05-04 17:40:22 +02:00
}