diff --git a/home/ooks/opt/shell/fish.nix b/home/ooks/opt/shell/fish.nix index ed23391..f342376 100644 --- a/home/ooks/opt/shell/fish.nix +++ b/home/ooks/opt/shell/fish.nix @@ -6,6 +6,7 @@ let hasNeovim = config.programs.neovim.enable; hasKitty = config.programs.kitty.enable; hasTre = hasPackage "tre-command"; + hasBat = hasPackage "bat"; in { programs.fish = { @@ -32,6 +33,8 @@ in ls = mkIf hasEza "eza"; + cat = mkIf hasBat "bat"; + vim = mkIf hasNeovim "nvim"; };