replace ls with eza
This commit is contained in:
parent
5d79895d84
commit
6fd9e72e49
|
@ -11,6 +11,7 @@
|
||||||
./shell/zellij.nix
|
./shell/zellij.nix
|
||||||
./shell/zsh.nix
|
./shell/zsh.nix
|
||||||
./shell/starship.nix
|
./shell/starship.nix
|
||||||
|
./shell/eza.nix
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
username = "lillian";
|
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 = {
|
shellAliases = {
|
||||||
cd = "z";
|
cd = "z";
|
||||||
code = "codium ./";
|
code = "codium ./";
|
||||||
|
ls = "eza";
|
||||||
lh = "ls -lah";
|
lh = "ls -lah";
|
||||||
cat = "bat";
|
cat = "bat";
|
||||||
tree = "tre";
|
tree = "tre";
|
||||||
|
|
Loading…
Reference in a new issue