diff --git a/nushell/config.nu b/nushell/config.nu index 42aed44..ec69e68 100644 --- a/nushell/config.nu +++ b/nushell/config.nu @@ -98,12 +98,14 @@ def l [dir?: string] { _ls (if $dir == null { "" } else { $dir }) | sort-by type name -i | grid -c -s " " + | cat } def ls [dir?: string] { _ls (if $dir == null { "" } else { $dir }) | sort-by type name -i | grid -c -s " " + | cat } def la [dir?: string] {