diff --git a/nushell/config.nu b/nushell/config.nu index 0bfd22a..76d9919 100644 --- a/nushell/config.nu +++ b/nushell/config.nu @@ -97,13 +97,13 @@ def _ls_format_mode [mode: string] { def l [dir?: string] { _ls (if $dir == null { "" } else { $dir }) | sort-by type name -i - | grid -c + | grid -c -s " " } def ls [dir?: string] { _ls (if $dir == null { "" } else { $dir }) | sort-by type name -i - | grid -c + | grid -c -s " " } def la [dir?: string] {