My dotfiles

jj: pick a different log node format

For whatever reason, the diamond isn't rendering correctly in about
half the terminal emulators I use, and it's slowly driving me nuts, so
let's switch it up

bitquabit.com 97272838 b07fe37d

verified
+18
+18
jj/conf.d/default.toml
··· 46 46 47 47 [templates] 48 48 git_push_bookmark = '"bmps/push-" ++ change_id.short()' 49 + log_node = ''' 50 + coalesce( 51 + if(!self, label("elided", "~")), 52 + label( 53 + separate(" ", 54 + if(current_working_copy, "working_copy"), 55 + if(immutable, "immutable"), 56 + if(conflict, "conflict"), 57 + ), 58 + coalesce( 59 + if(current_working_copy, "@"), 60 + if(immutable, "●"), 61 + if(conflict, "×"), 62 + "○", 63 + ) 64 + ) 65 + ) 66 + '''