feature(delta): use WEBI_UA for curl.exe
[webi-installers/.git] / lsd / README.md
index a48b08b58a2305c5346f7053f94feb134a33dc13..b7ea1e1b0b938636674096d30905e33b2816e649 100644 (file)
@@ -5,11 +5,7 @@ tagline: |
   LSDeluxe: next gen ls command
 ---
 
-### Updating `lsd`
-
-`webi lsd@stable`
-
-Use the `@beta` tag for pre-releases.
+To update or switch versions, run `webi lsd@stable` (or `@v0.20`, `@beta`, etc).
 
 ## Cheat Sheet
 
@@ -55,17 +51,17 @@ lsd
 Update your `.bashrc`, `.zshrc`, or `.profile`
 
 ```bash
-alias ls="lsd"
-alias la="lsd -A"
-alias ll="lsd -l"
-alias lg="lsd --group-dirs=first"
+alias ls="lsd -F"
+alias la="lsd -AF"
+alias ll="lsd -lAF"
+alias lg="lsd -F --group-dirs=first"
 ```
 
 For situations in which you must use `ls` exactly, remember that you can escape
 the alias:
 
 ```bash
-\ls
+\ls -lAF
 ```
 
 ### How to alias as `tree`
@@ -73,7 +69,7 @@ the alias:
 Update your `.bashrc`, `.zshrc`, or `.profile`
 
 ```bash
-alias tree="lsd --tree"
+alias tree="lsd -AF --tree"
 ```
 
 And when you want to use GNU `tree`, just escape the alias: