replace ls with eza
This commit is contained in:
parent
5d79895d84
commit
6fd9e72e49
|
@ -11,6 +11,7 @@
|
|||
./shell/zellij.nix
|
||||
./shell/zsh.nix
|
||||
./shell/starship.nix
|
||||
./shell/eza.nix
|
||||
];
|
||||
home = {
|
||||
username = "lillian";
|
||||
|
|
8
home-manager/shared/shell/eza.nix
Normal file
8
home-manager/shared/shell/eza.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{lib, ...}: {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
git = true;
|
||||
icons = true;
|
||||
};
|
||||
}
|
|
@ -15,6 +15,7 @@
|
|||
shellAliases = {
|
||||
cd = "z";
|
||||
code = "codium ./";
|
||||
ls = "eza";
|
||||
lh = "ls -lah";
|
||||
cat = "bat";
|
||||
tree = "tre";
|
||||
|
|
Loading…
Reference in a new issue