Disable lazygit popup
It keps popping up over and over again (because of impermanence)
This commit is contained in:
parent
8ff62cb40d
commit
366ed55d6f
|
@ -1,9 +1,12 @@
|
||||||
{ config, ... }: {
|
{ config, ... }:
|
||||||
|
{
|
||||||
programs.lazygit = {
|
programs.lazygit = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.promptToReturnFromSubprocess = false;
|
settings = {
|
||||||
|
promptToReturnFromSubprocess = false;
|
||||||
|
disableStartupPopups = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
satellite.persistence.at.state.apps.lazygit.directories =
|
satellite.persistence.at.state.apps.lazygit.directories = [ "${config.xdg.configHome}/lazygit" ];
|
||||||
[ "${config.xdg.configHome}/lazygit" ];
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue