15 lines
266 B
Nix
Executable file
15 lines
266 B
Nix
Executable file
{
|
|
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";
|
|
};
|
|
};
|
|
}
|