2023-03-03 23:33:37 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
bat
|
|
|
|
bat-extras.batman
|
|
|
|
];
|
|
|
|
|
|
|
|
# bat - TODO: condition these on programs.bat.enable ?
|
|
|
|
home.shellAliases.cat = "bat --style=plain --paging=never";
|
|
|
|
home.shellAliases.man = "batman";
|
|
|
|
|
|
|
|
# TODO: implement programs.bat.enableAliases
|
|
|
|
programs.bat = {
|
|
|
|
enable = true;
|
|
|
|
themes.railscast = builtins.readFile (pkgs.fetchFromGitHub {
|
|
|
|
owner = "jeromedalbert";
|
|
|
|
repo = "sublime-text-railscasttextmate-theme";
|
|
|
|
rev = "0a4861f35e72f9ad4cc1cac42730ea563be2ffd3";
|
|
|
|
hash = "sha256-1Ml5vqP9r6oCfLhaNGPQJXS8e7utxQQycIm3Hk9wE3w=";
|
|
|
|
} + "/railscast-textmate.tmtheme");
|
|
|
|
config.theme = "railscast";
|
|
|
|
#config.style = "plain";
|
|
|
|
config.map-syntax = [
|
|
|
|
"poetry.toml:toml"
|
|
|
|
"flake.lock:json"
|
|
|
|
"*.jsonl:json"
|
|
|
|
];
|
|
|
|
# only in unstable as of 22.11:
|
|
|
|
#extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];
|
|
|
|
};
|
2023-03-04 00:09:57 +01:00
|
|
|
|
|
|
|
# TODO: generate bat syntax cache: 'bat cache --build'
|
2023-03-03 23:33:37 +01:00
|
|
|
}
|