bat alias

This commit is contained in:
ooks-io 2023-10-16 11:01:36 +13:00
parent 857ee92d50
commit 31eb7f517d

View file

@ -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";
};