feat: exa

Signed-off-by: jolheiser <john.olheiser@gmail.com>
jenkins
jolheiser 2023-07-08 22:49:54 -05:00
parent 1b0a387fcc
commit 5b4d4791f3
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
3 changed files with 18 additions and 1 deletions

View File

@ -6,6 +6,7 @@
imports = [
./bat.nix
./bottom.nix
./exa.nix
./firefox.nix
./fzf.nix
./gpg.nix

16
apps/exa.nix 100644
View File

@ -0,0 +1,16 @@
{
programs.exa = {
enable = true;
# These don't affect nushell currently
# git = true;
# icons = true;
};
programs.nushell.shellAliases = {
exa = "exa --git --icons";
ls = "exa";
ll = "exa -l";
la = "exa -a";
lt = "exa --tree";
lla = "exa -la";
};
}

View File

@ -8,7 +8,7 @@
find = "fd";
df = "duf";
du = "dust -b -d 1";
ll = "ls -al";
# ll = "ls -al"; # Handled by exa
};
extraConfig = ''
use ${pkgs.nu_scripts}/share/nu_scripts/custom-completions/bitwarden-cli/bitwarden-cli-completions.nu *