From c2908e656dcb222abc135719f07ebf6ba4bddda0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 24 May 2025 00:27:27 +0200 Subject: [PATCH] feat(bat): use bat as default cat --- home.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 3bab22b..ef5edb0 100644 --- a/home.nix +++ b/home.nix @@ -36,7 +36,6 @@ in { ouch inetutils fd - bat # remote working remmina # communication @@ -223,6 +222,7 @@ in { shellAliases = { vim = "hx"; vi = "hx"; + cat = "bat"; # progress cp # https://serverfault.com/questions/43014/copying-a-large-directory-tree-locally-cp-or-rsync @@ -414,4 +414,8 @@ in { }; }; }; + + programs.bat = { + enable = true; + }; }