replace ls with eza

This commit is contained in:
Lillian Violet 2024-04-30 11:30:44 +02:00
parent 5d79895d84
commit 6fd9e72e49
3 changed files with 10 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./shell/zellij.nix
./shell/zsh.nix
./shell/starship.nix
./shell/eza.nix
];
home = {
username = "lillian";

View file

@ -0,0 +1,8 @@
{lib, ...}: {
programs.eza = {
enable = true;
enableZshIntegration = true;
git = true;
icons = true;
};
}

View file

@ -15,6 +15,7 @@
shellAliases = {
cd = "z";
code = "codium ./";
ls = "eza";
lh = "ls -lah";
cat = "bat";
tree = "tre";