nix-community.nixvim/tests/test-sources/plugins/utils/nix-develop.nix
2023-10-18 10:19:46 +02:00

17 lines
257 B
Nix

{
empty = {
plugins.nix-develop.enable = true;
};
example = {
plugins.nix-develop = {
enable = true;
ignoredVariables = {
HOME = true;
};
separatedVariables = {
"LUA_PATH" = ":";
};
};
};
}