Add ls, cat and less replacement

This commit is contained in:
Yorick Barbanneau 2023-09-23 19:52:26 +02:00
parent d1423bfe00
commit 51bc9ff9d6
3 changed files with 28 additions and 0 deletions

13
home-manager/cli/eza.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ...}:
{
home.packages = with pkgs; [
eza
];
programs.zsh.shellAliases = {
ls = "eza";
};
home.sessionVariables = {
EXA_COLORS = "xx=2";
};
}