mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
15 lines
250 B
Nix
15 lines
250 B
Nix
{
|
|
empty = {plugins.direnv.enable = true;};
|
|
|
|
defaults = {
|
|
plugins.direnv = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
direnv_auto = false;
|
|
direnv_edit_mode = "vsplit";
|
|
direnv_silent_load = false;
|
|
};
|
|
};
|
|
};
|
|
}
|