diff options
Diffstat (limited to 'nix/users/fcuny/shell.nix')
| -rw-r--r-- | nix/users/fcuny/shell.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nix/users/fcuny/shell.nix b/nix/users/fcuny/shell.nix index b415038..bcac8c6 100644 --- a/nix/users/fcuny/shell.nix +++ b/nix/users/fcuny/shell.nix @@ -51,6 +51,24 @@ in g = "git"; gap = "git add --patch"; }; + shellAliases = { + la = "eza -la --git --color=always --group-directories-first"; + ll = "eza -la -L=1 --git --color=always --group-directories-first"; + lt = "eza -aT -L=2 --git --color=always --group-directories-first"; + }; + }; + + # an alternative to ls + programs.eza = { + enable = true; + icons = "never"; + enableFishIntegration = false; + extraOptions = [ + "--group-directories-first" + "--no-quotes" + "--git-ignore" + "--icons=never" + ]; }; # an alternative to find |
