commit 0c2690b5613729cb316f6c6f9d33da4ba798a00f
parent 2c55e3c015b397de64a405580e738cd529696080
Author: Chris Bracken <chris@bracken.jp>
Date: Fri, 14 Nov 2025 16:28:15 +0900
jj: move colours config to bottom
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.config/jj/config.toml b/.config/jj/config.toml
@@ -8,10 +8,6 @@ email = "chris@bracken.jp"
l = ["log", "-T", "fmt_lol", "-r", "ancestors(trunk() | mutable(), 3)"]
ll = ["log", "-T", "fmt_lol", "-r", "::"]
-[colors]
-"committer timestamp" = "cyan"
-"working_copy committer timestamp" = "bright cyan"
-
[template-aliases]
# 1. Define the content format
fmt_lol_content = '''
@@ -32,3 +28,7 @@ separate(" ",
'''
# 2. Wrap the content in the "working_copy" label if applicable
fmt_lol = 'if(current_working_copy, label("working_copy", fmt_lol_content), fmt_lol_content)'
+
+[colors]
+"committer timestamp" = "cyan"
+"working_copy committer timestamp" = "bright cyan"