replace ls with eza
This commit is contained in:
parent
42a9dedb7b
commit
da097f5067
3 changed files with 11 additions and 4 deletions
|
|
@ -23,7 +23,10 @@ in
|
|||
};
|
||||
|
||||
shellAliases = {
|
||||
ll = "ls -alF";
|
||||
ls = "eza";
|
||||
ll = "eza -l --icons --git";
|
||||
la = "eza -la --icons --git";
|
||||
lt = "eza --tree --icons";
|
||||
|
||||
# Nix helpers
|
||||
hm = "home-manager";
|
||||
|
|
@ -163,7 +166,13 @@ in
|
|||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
|
||||
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
icons = "auto";
|
||||
git = true;
|
||||
};
|
||||
|
||||
# Manage Powerlevel10k configuration
|
||||
home.file.".p10k.zsh".source = ../config/p10k.zsh;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue