replace ls with eza
This commit is contained in:
parent
42a9dedb7b
commit
da097f5067
3 changed files with 11 additions and 4 deletions
|
|
@ -168,7 +168,6 @@
|
|||
ncdu
|
||||
imagemagick
|
||||
git-credential-oauth
|
||||
zoxide
|
||||
delta
|
||||
fastfetch
|
||||
coreutils # GNU core utilities (base64, etc.)
|
||||
|
|
|
|||
|
|
@ -52,7 +52,6 @@
|
|||
# Command-line utilities
|
||||
ncdu
|
||||
git-credential-oauth
|
||||
zoxide
|
||||
delta
|
||||
fastfetch
|
||||
coreutils # GNU core utilities (base64, etc.)
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
@ -164,6 +167,12 @@ in
|
|||
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