From e3100e6afd484aae28cc3b7d244eb95eeb52e39e Mon Sep 17 00:00:00 2001 From: Luca Trevisani Date: Mon, 28 Feb 2022 22:47:14 +0100 Subject: [PATCH] Fix alias in `docs/sample_config/config.toml` (#4669) --- docs/sample_config/config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sample_config/config.toml b/docs/sample_config/config.toml index 5c4533e40a..eb3a3054a6 100644 --- a/docs/sample_config/config.toml +++ b/docs/sample_config/config.toml @@ -4,7 +4,8 @@ skip_welcome_message = false # Note to nushell developer: This is expected to be disable_table_indexes = false nonzero_exit_errors = true startup = [ - "alias la = ls --long", + "alias la = ls --all", + "alias ll = ls --long", "def nudown [] {fetch https://api.github.com/repos/nushell/nushell/releases | get assets | select name download_count}", "def nuver [] {version | pivot key value}", ]