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