From 8ae616300b949676ee0fe3c155ca2809cfad213c Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Mon, 24 Jun 2024 10:15:27 +0200 Subject: [PATCH] fix ls autocomplete --- home-manager/zsh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/zsh/default.nix b/home-manager/zsh/default.nix index d58d620..cc2d192 100644 --- a/home-manager/zsh/default.nix +++ b/home-manager/zsh/default.nix @@ -13,7 +13,7 @@ collectGarbage = "nh clean all"; edit = "cd ~/projects/github/nix-config && nvim ."; ll = "ls -l"; - ls = "eza --icons"; + ls = "eza --icons always"; la = "eza -la --icons --group-directories-first"; ssh = "TERM=xterm-256color ssh"; update = "sudo nixos-rebuild switch";