1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-11 13:06:05 +01:00
nixvim/tests/test-sources/plugins/by-name/nix-develop/default.nix
2024-12-16 16:43:20 -03:00

17 lines
255 B
Nix

{
empty = {
plugins.nix-develop.enable = true;
};
example = {
plugins.nix-develop = {
enable = true;
ignoredVariables = {
HOME = true;
};
separatedVariables = {
LUA_PATH = ":";
};
};
};
}