๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use default graph

kacaii c3db34ad 0200b98b

+3 -49
+3 -49
.config/jj/config.toml
··· 51 51 ''' 52 52 53 53 [templates] 54 - log = ''' 55 - if(root, 56 - format_root_commit(self), 57 - label(if(current_working_copy, "working_copy"), 58 - separate(" ", 59 - format_short_change_id_with_hidden_and_divergent_info(self), 60 - if(empty, label("empty", "(empty)")), 61 - if(description, 62 - description.first_line(), 63 - label(if(empty, "empty"), description_placeholder), 64 - ), 65 - bookmarks, 66 - tags, 67 - working_copies, 68 - if(git_head, label("git_head", "HEAD")), 69 - if(conflict, label("conflict", "conflict")), 70 - format_timestamp(commit_timestamp(self)), 71 - ) ++ "\n", 72 - ) 73 - ) 74 - ''' 75 - 76 - log_node = ''' 77 - label("node", 78 - coalesce( 79 - if(!self, label("elided", "~")), 80 - if(current_working_copy, label("working_copy", "@")), 81 - if(conflict, label("conflict", "ร—")), 82 - if(immutable, label("immutable", "โ€ข")), 83 - label("normal", "ยท") 84 - ) 85 - ) 86 - ''' 87 - 88 - draft_commit_description = ''' 89 - concat( 90 - coalesce(description, default_commit_description, "\n"), 91 - surround( 92 - "\nJJ: This commit contains the following changes:\n", "", 93 - indent("JJ: ", diff.stat(72)), 94 - ), 95 - "\nJJ: ignore-rest\n", 96 - diff.git(), 97 - ) 98 - ''' 99 54 100 55 git_push_bookmark = '''"op/" ++ change_id.short()''' 101 56 ··· 118 73 119 74 [colors] 120 75 change_id = "magenta" 121 - author = { fg = "magenta", dim = true } 76 + author = { fg = "white" } 122 77 bookmarks = { fg = "red" } 123 78 commit_id = { fg = "yellow" } 124 79 timestamp = { fg = "blue", dim = true } ··· 136 91 prefix = { bold = true, fg = "magenta" } 137 92 rest = { bold = false, fg = "bright black" } 138 93 working_copy = { bold = true } 139 - "working_copy author" = { fg = "magenta", underline = true } 140 - "working_copy commit_id prefix" = { fg = "yellow", underline = true } 94 + "working_copy author" = { fg = "white", underline = true } 141 95 "working_copy commit_id" = { fg = "red", underline = true } 142 96 "working_copy timestamp" = { fg = "blue", underline = true } 143 97 "working_copy empty" = "green" 144 98 "working_copy placeholder" = "red" 145 99 "working_copy description" = { fg = "yellow", bold = false } 146 - "working_copy description placeholder" = "yellow" 100 + "working_copy description placeholder" = "bright black" 147 101 "working_copy empty description placeholder" = "green"