From 6eb088e3666d7384d945bd4ce3cbe21dac421b4d Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 5 Aug 2025 14:10:54 +0200 Subject: [PATCH] chore(home): remove custom shellAliases for bat - Deleted shell aliases for `cat` and `less` using `bat` to simplify configuration. - Maintains alias for `man` with `batman` for consistency. --- modules/home/cli-apps/home-manager/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/home/cli-apps/home-manager/default.nix b/modules/home/cli-apps/home-manager/default.nix index eaf7586..f8bd9a9 100644 --- a/modules/home/cli-apps/home-manager/default.nix +++ b/modules/home/cli-apps/home-manager/default.nix @@ -24,8 +24,6 @@ in }; home.shellAliases = { - cat = "${pkgs.bat}/bin/bat --decorations never"; - less = ''${pkgs.bat}/bin/bat --decorations never --paging=always --pager "${pkgs.less}/bin/less -RF"''; man = "${pkgs.bat-extras.batman}/bin/batman"; };