mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
18 lines
257 B
Nix
18 lines
257 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.nix-develop.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.nix-develop = {
|
||
|
enable = true;
|
||
|
ignoredVariables = {
|
||
|
HOME = true;
|
||
|
};
|
||
|
separatedVariables = {
|
||
|
"LUA_PATH" = ":";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|