From 0661c8343dc236ecb8ebbb41e38a0140e19e0ea6 Mon Sep 17 00:00:00 2001 From: James Couball Date: Thu, 12 Dec 2024 20:12:51 +0000 Subject: [PATCH] chore: colorize output of the 'll' command --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 634b90f..1aafb7b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -20,7 +20,7 @@ COPY package.json requirements.txt /workspaces/notes/ RUN mkdir -p /home/vscode/.local/bin && \ # Create an alias for ls -al echo '#!/bin/sh' > /home/vscode/.local/bin/ll && \ - echo 'ls -al "$@"' >> /home/vscode/.local/bin/ll && \ + echo 'ls --color -alh "$@"' >> /home/vscode/.local/bin/ll && \ chmod +x /home/vscode/.local/bin/ll && \ # Install mkdocs and other Python dependencies pip3 install --no-cache-dir -r /workspaces/notes/requirements.txt && \