plugins/nix-develop: init + tests (#644)

This commit is contained in:
Haseeb Majid 2023-10-18 09:19:46 +01:00 committed by GitHub
parent 465d09849a
commit 0ece949f98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
empty = {
plugins.nix-develop.enable = true;
};
example = {
plugins.nix-develop = {
enable = true;
ignoredVariables = {
HOME = true;
};
separatedVariables = {
"LUA_PATH" = ":";
};
};
};
}