From 1ed45862927abef628f217c6130f23c61dc361d9 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Thu, 6 Feb 2025 22:16:36 +0000 Subject: [PATCH] zsh: fix typo in ls alias --- modules/home-manager/shell/zsh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/shell/zsh/default.nix b/modules/home-manager/shell/zsh/default.nix index c393d46..ae50c07 100644 --- a/modules/home-manager/shell/zsh/default.nix +++ b/modules/home-manager/shell/zsh/default.nix @@ -125,7 +125,7 @@ in mkdir = "mkdir -v"; # Colorize commands - ls = "ls -h --collor=auto --group-directories-first"; + ls = "ls -h --color=auto --group-directories-first"; # Abbreviations e = "$EDITOR";