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