punkfairie
9408679e81
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
18 lines
328 B
Nix
18 lines
328 B
Nix
{ ... }:
|
|
{
|
|
programs.lazygit = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
gui.nerdFontsVersion = 3;
|
|
|
|
git.paging = {
|
|
colorArg = "always";
|
|
# TODO only set this if delta is installed
|
|
pager = "delta --paging=never --features=arctic-fox";
|
|
};
|
|
|
|
os.editPreset = "nvim-remote";
|
|
};
|
|
};
|
|
}
|