From 61ace4f55a1c2db3706433f0c144ad18ecb8f672 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 9 Aug 2023 11:47:06 -0400 Subject: [PATCH] fish(exa): Add icons --- modules/fish.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/fish.nix b/modules/fish.nix index 23ad2d5..398361b 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -24,8 +24,8 @@ enable = true; shellAliases = { - ls = "${pkgs.exa}/bin/exa --group-directories-first -I 'lost+found'"; - tree = "${pkgs.exa}/bin/exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next'"; + ls = "${pkgs.exa}/bin/exa --icons --group-directories-first -I 'lost+found'"; + tree = "${pkgs.exa}/bin/exa --icons --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next'"; mv = "mv -i"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";