nix-community.nixvim/tests/test-sources/plugins/utils/nix-develop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
257 B
Nix
Raw Normal View History

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