From f083325b4a048e54b6f19c966f577aac113dbc59 Mon Sep 17 00:00:00 2001
From: Antoine Martin <antoine@alarsyo.net>
Date: Thu, 6 Mar 2025 16:33:45 +0100
Subject: [PATCH] home: jj: drop fancy icon from log

This messes with the graph formatting when history is not linear because
the fancy icon's width is non-standard
---
 home/jj/config.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/home/jj/config.toml b/home/jj/config.toml
index 730916e..c407a1e 100644
--- a/home/jj/config.toml
+++ b/home/jj/config.toml
@@ -46,8 +46,8 @@ coalesce(
       if(current_working_copy, "@"),
       if(immutable, "◆"),
       if(conflict, "×"),
-      if(description.starts_with("wip:"), "🔒"),
-      if(description.starts_with("private:"), "🔒"),
+      if(description.starts_with("wip:"), "!"),
+      if(description.starts_with("private:"), "!"),
       "○",
     )
   )