mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
18 lines
258 B
Nix
18 lines
258 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.direnv.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.direnv = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
direnv_auto = false;
|
||
|
direnv_edit_mode = "vsplit";
|
||
|
direnv_silent_load = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|