librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / test / vim / default.nix
blob5a3bf376fb88468a347d557a4c1ee6ea17a7db2b
1 { vimUtils, vim-full, vimPlugins, pkgs }:
2 let
3   inherit (vimUtils) buildVimPlugin;
5   packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
7 in
8   pkgs.recurseIntoAttrs (rec {
9   vim_empty_config = vimUtils.vimrcFile { beforePlugins = ""; customRC = ""; };
11   ### vim tests
12   ##################
14   test_vim_with_vim_nix_using_plug = vim-full.customize {
15     name = "vim-with-vim-addon-nix-using-plug";
16     vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];
17   };
19   test_vim_with_vim_nix = vim-full.customize {
20     name = "vim-with-vim-addon-nix";
21     vimrcConfig.packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
22   };