From 855e439c04b7d1d61f669b1f4e194faf58127e47 Mon Sep 17 00:00:00 2001
From: Abizer Lokhandwala <abizer@abizer.me>
Date: Mon, 6 Nov 2023 12:35:24 -0800
Subject: [PATCH] remove alias sl='ls'

---
 modules/utility/README.md | 1 -
 modules/utility/init.zsh  | 1 -
 2 files changed, 2 deletions(-)

diff --git a/modules/utility/README.md b/modules/utility/README.md
index 142b1eae..78a75556 100644
--- a/modules/utility/README.md
+++ b/modules/utility/README.md
@@ -140,7 +140,6 @@ zstyle ':prezto:module:utility' correct 'no'
 - `lt` lists sorted by date, most recent last.
 - `lc` lists sorted by date, most recent last, shows change time.
 - `lu` lists sorted by date, most recent last, shows access time.
-- `sl` lists directory contents (correction for `ls`).
 
 ### macOS Everywhere
 
diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh
index 7e2e14ed..e10c4fea 100644
--- a/modules/utility/init.zsh
+++ b/modules/utility/init.zsh
@@ -122,7 +122,6 @@ alias lk='ll -Sr'        # Lists sorted by size, largest last.
 alias lt='ll -tr'        # Lists sorted by date, most recent last.
 alias lc='lt -c'         # Lists sorted by date, most recent last, shows change time.
 alias lu='lt -u'         # Lists sorted by date, most recent last, shows access time.
-alias sl='ls'            # Correction for common spelling error.
 
 if [[ ${(@M)${(f)"$(ls --version 2>&1)"}:#*GNU *} ]]; then
   alias lx='ll -XB'      # Lists sorted by extension (GNU only).