From 0425970e538fea08a95c496dfe17eedf1fdb7398 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 12 Aug 2022 03:28:41 -0400 Subject: [PATCH] feat(global/shell): add alias for pretty path --- modules/global/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/global/shell.nix b/modules/global/shell.nix index 633481c..58e1200 100644 --- a/modules/global/shell.nix +++ b/modules/global/shell.nix @@ -49,5 +49,7 @@ in mktmp = "cd $(mktemp -d)"; edit = "$EDITOR"; + + path = "tr ':' '\n' <<< \"$PATH\""; }; }