nix-community.nixvim/tests/test-sources/plugins/by-name/direnv/default.nix

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

25 lines
353 B
Nix
Raw Normal View History

2024-02-27 16:13:41 +00:00
{
empty = {
plugins.direnv.enable = true;
};
defaults = {
plugins.direnv = {
enable = true;
settings = {
2024-09-08 13:52:18 +01:00
direnv_auto = 0;
2024-02-27 16:13:41 +00:00
direnv_edit_mode = "vsplit";
2024-09-08 13:52:18 +01:00
direnv_silent_load = 0;
2024-02-27 16:13:41 +00:00
};
};
};
2024-09-14 10:29:52 -05:00
no-packages = {
plugins.direnv = {
enable = true;
direnvPackage = null;
};
};
2024-02-27 16:13:41 +00:00
}