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

Configure Feed

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

edit colors again

+4 -72
+4 -42
.config/jj/conf.d/colors.toml
··· 1 1 #:schema https://jj-vcs.github.io/jj/latest/config-schema.json 2 2 3 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" 4 + commit_id = "blue" 5 + change_id = { bold = true, fg = "magenta" } 6 + prefix = { bold = true, fg = "magenta" } 7 + rest = { bold = false, fg = "bright black" }
-14
.config/jj/conf.d/templates.toml
··· 1 1 [template-aliases] 2 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 3 [templates] 18 4 git_push_bookmark = '"bryce/push-" ++ change_id.short()'
-16
.config/starship.toml
··· 42 42 -T 'bookmarks' --ignore-working-copy 43 43 """ 44 44 45 - [custom.icon] 46 - ignore_timeout = true 47 - description = "Icon for the current jj change" 48 - detect_folders = [".jj"] 49 - command = """ 50 - jj op log --no-graph --color never --ignore-working-copy \ 51 - -T concat( 52 - if(conflict, "๏‡ข"), 53 - if(divergent, "๎‚ "), 54 - if(hidden, "๓ฑ™"), 55 - if(immutable, "๏€ฃ"), 56 - ), 57 - """ 58 - 59 45 [custom.jj_op] 60 46 ignore_timeout = true 61 47 description = "The current jj operation" ··· 73 59 jj log -r @ --no-graph --color never --ignore-working-copy \ 74 60 -T 'truncate_end(29, description.first_line(), "โ€ฆ")' 75 61 """ 76 - 77 - # ๎ปญ Catppuccin ---------------------------------------------------------------- 78 62 79 63 [palettes.catppuccin_mocha] 80 64 rosewater = "#f5e0dc"