aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell.nix b/lib/shell.nix
index e6ba22c..e984a05 100644
--- a/lib/shell.nix
+++ b/lib/shell.nix
@@ -12,7 +12,7 @@ let
12 codeBlock = code: text: ''"\e[${code}m"${escapeShellArg text}"\e[0m"''; 12 codeBlock = code: text: ''"\e[${code}m"${escapeShellArg text}"\e[0m"'';
13 keyword = codeBlock "1;36"; 13 keyword = codeBlock "1;36";
14 section = codeBlock "4;35"; 14 section = codeBlock "4;35";
15 printSectionTitle = title: ''echo -e "\n\n"${section title}"\n"''; 15 printSectionTitle = title: ''echo -e "\n"${section title}'';
16 }; 16 };
17 17
18in rec { 18in rec {