This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2023-07-13 20:35:19 +00:00
|
|
|
{lib, ...}: {
|
2023-07-09 03:49:54 +00:00
|
|
|
programs.exa = {
|
|
|
|
enable = true;
|
|
|
|
# These don't affect nushell currently
|
|
|
|
# git = true;
|
|
|
|
# icons = true;
|
|
|
|
};
|
|
|
|
programs.nushell.shellAliases = {
|
|
|
|
exa = "exa --git --icons";
|
|
|
|
ls = "exa";
|
2023-07-13 20:35:19 +00:00
|
|
|
ll = lib.mkForce "exa -l";
|
2023-07-09 03:49:54 +00:00
|
|
|
la = "exa -a";
|
|
|
|
lt = "exa --tree";
|
|
|
|
lla = "exa -la";
|
|
|
|
};
|
|
|
|
}
|