feat(jj): set default pager to bat
Less puts the content at the bottom which makes it hard to read on large displays :c
This commit is contained in:
parent
e3565ad61b
commit
ac6daaa379
1 changed files with 6 additions and 1 deletions
|
@ -165,7 +165,12 @@ in
|
|||
};
|
||||
programs.lazygit.enable = true;
|
||||
# Jujutsu (alternative DVCS (git-compatible))
|
||||
programs.jujutsu.enable = true;
|
||||
programs.jujutsu = {
|
||||
enable = true;
|
||||
settings = {
|
||||
ui.pager = "bat";
|
||||
};
|
||||
};
|
||||
})
|
||||
(lib.mkIf (cfg.enable && devcfg.enable && devcfg.rust.enable) {
|
||||
home.packages = [ pkgs.rustup ] ++ devcfg.rust.extraPackages;
|
||||
|
|
Loading…
Reference in a new issue