1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-27 04:31:04 +01:00
nixvim/tests/test-sources/examples.nix
Matt Sturgeon 824e048096 tests/fetch-tests: only apply required args
Using `functionArgs` and `intersectAttrs`, apply only the required args
to test module files.
2025-11-24 11:09:51 +00:00

17 lines
293 B
Nix

{ pkgs }:
{
plain = { };
python-packages = {
extraPython3Packages = p: with p; [ numpy ];
};
simple-plugin = {
extraPlugins = [ pkgs.vimPlugins.vim-surround ];
};
gruvbox-raw-method = {
extraPlugins = [ pkgs.vimPlugins.gruvbox ];
colorscheme = "gruvbox";
};
}