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

Configure Feed

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

split jj config in modules

+64 -1
+45
.config/jj/conf.d/colors.toml
··· 1 + #:schema https://jj-vcs.github.io/jj/latest/config-schema.json 2 + 3 + [colors] 4 + "author".fg = "blue" 5 + "bookmark".fg = "red" 6 + "bookmarks".fg = "red" 7 + "change_id".fg = "magenta" 8 + "commit_id".fg = "blue" 9 + "conflict change_id".fg = "red" 10 + "current_working_copy change_id".reverse = true 11 + "current_working_copy commit_id".reverse = true 12 + "diff modified".fg = "blue" 13 + "diff renamed".fg = "blue" 14 + "empty author".fg = "bright black" 15 + "empty change_id".italic = true 16 + "empty commit_id".fg = "bright black" 17 + "empty commit_id".italic = true 18 + "empty description".fg = "bright black" 19 + "empty description".italic = true 20 + "empty ellipsis".fg = "bright black" 21 + "empty ellipsis".italic = true 22 + "empty timestamp".fg = "bright black" 23 + "empty timestamp".italic = true 24 + "empty".bold = false 25 + "immutable timestamp".fg = "default" 26 + "mark".fg = "bright black" 27 + "node current_working_copy".reverse = true 28 + "node private".fg = "yellow" 29 + "node unsafe".fg = "yellow" 30 + "node wip".fg = "yellow" 31 + "tag" = "yellow" 32 + "tags" = "yellow" 33 + "text link".fg = "blue" 34 + "text warning".bold = true 35 + "text warning".fg = "red" 36 + "timestamp".fg = "white" 37 + "unsafe change_id".fg = "yellow" 38 + "unsafe commit_id".fg = "cyan" 39 + "working_copies".fg = "default" 40 + "working_copy author".fg = "blue" 41 + "working_copy empty".fg = "bright black" 42 + "working_copy placeholder".fg = "bright black" 43 + "working_copy timestamp".fg = "magenta" 44 + "working_copy description placeholder".fg = "bright black" 45 + "working_copy empty description placeholder".fg = "bright black"
+18
.config/jj/conf.d/templates.toml
··· 1 + [template-aliases] 2 + 3 + "format_commit_bookmarks(commit)" = '''separate(" ", 4 + commit.working_copies(), 5 + commit.tags(), 6 + commit.bookmarks(), 7 + )''' 8 + 9 + "format_description(commit)" = '''separate(" ", 10 + if(empty, label("empty", "(empty)")), 11 + if(commit.description(), 12 + commit.description().first_line(), 13 + if(!empty, label("description placeholder", "(no description set)")), 14 + ), 15 + )''' 16 + 17 + [templates] 18 + git_push_bookmark = '"bryce/push-" ++ change_id.short()'
+1 -1
.config/starship.toml
··· 62 62 detect_folders = [".jj"] 63 63 command = """ 64 64 jj op log --limit 1 --no-graph --color always --ignore-working-copy \ 65 - -T 'separate(" ", "๏’ถ ", id.short(6))'\ 65 + -T 'id.short(6)'\ 66 66 """ 67 67 68 68 [custom.jj_description]