Switch to eza for better ls

This commit is contained in:
Tyler Kelley 2024-06-17 18:28:44 -05:00
parent dd9bdda1a9
commit 760510cc3c
2 changed files with 11 additions and 6 deletions

View File

@ -237,12 +237,12 @@
vim vim
wget wget
killall killall
eza
git git
cmatrix cmatrix
lolcat lolcat
fastfetch fastfetch
htop htop
btop
brave brave
libvirt libvirt
lxqt.lxqt-policykit lxqt.lxqt-policykit
@ -258,7 +258,6 @@
socat socat
cowsay cowsay
ripgrep ripgrep
lsd
lshw lshw
pkg-config pkg-config
meson meson

View File

@ -146,6 +146,13 @@ in
programs = { programs = {
gh.enable = true; gh.enable = true;
btop = {
enable = true;
settings = {
color_theme = "TTY";
vim_keys = true;
};
};
kitty = { kitty = {
enable = true; enable = true;
package = pkgs.kitty; package = pkgs.kitty;
@ -183,10 +190,9 @@ in
zu = "sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh)"; zu = "sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh)";
ncg = "nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot"; ncg = "nix-collect-garbage --delete-old && sudo nix-collect-garbage -d && sudo /run/current-system/bin/switch-to-configuration boot";
v = "nvim"; v = "nvim";
ls = "lsd"; ls = "eza --icons";
ll = "lsd -l"; ll = "eza -lh --icons --grid --group-directories-first";
la = "lsd -a"; la = "eza -lah --icons --grid --group-directories-first";
lal = "lsd -al";
".." = "cd .."; ".." = "cd ..";
}; };
}; };