home: jujutsu: set 'ui.pager'
The v0.36 release stopped honoring `$PAGER`. So enforce it in the configuration (as I don't like their default pager settings). Ideally this would be `mkIf`ed behind `my.home.pager.enable`, however it looks like this does not work with the TOML type (does not seem to do any `mkMerge`-ish logic).
This commit is contained in:
parent
f16195cc99
commit
6ba4dcf324
1 changed files with 2 additions and 0 deletions
|
|
@ -43,6 +43,8 @@ in
|
||||||
ui = {
|
ui = {
|
||||||
# I don't like word-diff
|
# I don't like word-diff
|
||||||
diff-formatter = ":git";
|
diff-formatter = ":git";
|
||||||
|
# Does not honor `$PAGER` (anymore)
|
||||||
|
pager = lib.mkDefault config.home.sessionVariables.PAGER;
|
||||||
};
|
};
|
||||||
|
|
||||||
"--scope" = [
|
"--scope" = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue