dotfiles/homes/modules/bat.nix

15 lines
266 B
Nix

{
config,
pkgs,
...
}: {
# like `/bin/cat` but with syntax highlighting
# TODO: change the pager (maybe use Github:sachaos/viddy instead)
programs.bat = {
enable = true;
config = {
pager = "less -FR";
theme = "Dracula";
};
};
}