This repository has been archived on 2024-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
|
{ config, lib, pkgs, ... }: lib.mkIf config.programs.bat.enable {
|
|
home = {
|
|
packages = with pkgs; [
|
|
bat
|
|
];
|
|
sessionVariables = {
|
|
MANPAGER = "sh -c 'col -bx | bat -l man -p'";
|
|
MANROFFOPT = "-c";
|
|
};
|
|
shellAliases = {
|
|
cat = "bat";
|
|
};
|
|
};
|
|
}
|