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

Configure Feed

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

reset jj config

kacaii 20a0bba2 8f068a15

+1 -71
-1
.config/fish/modules/abbr.fish
··· 25 25 abbr jjc "jj commit -m" 26 26 abbr jjd "jj describe -m" 27 27 abbr jjn "jj new -m" 28 - abbr jjp "jj mm; and jj push" 29 28 30 29 # ๎กง Poetry 31 30 abbr pea "poetry env activate | source"
+1 -70
.config/jj/config.toml
··· 1 1 #:schema https://jj-vcs.github.io/jj/latest/config-schema.json 2 2 3 3 [user] 4 - name = "kacaii" 4 + name = "kacaii.dev" 5 5 email = "kacaii.privado@gmail.com" 6 6 7 7 [remotes.origin] ··· 24 24 editor = "nvim" 25 25 graph.style = "curved" 26 26 27 - [template-aliases] 28 - "format_short_signature(signature)" = "signature.name()" 29 - "format_short_id(id)" = "id.shortest(6)" 30 - 31 - "abbreviate_timestamp_suffix(s, suffix, abbr)" = ''' 32 - if( 33 - s.ends_with(suffix), 34 - s.remove_suffix(suffix) ++ label("timestamp", abbr) 35 - ) 36 - ''' 37 - 38 - "abbreviate_relative_timestamp(s)" = ''' 39 - coalesce( 40 - abbreviate_timestamp_suffix(s, " millisecond", "ms"), 41 - abbreviate_timestamp_suffix(s, " second", "s"), 42 - abbreviate_timestamp_suffix(s, " minute", "m"), 43 - abbreviate_timestamp_suffix(s, " hour", "h"), 44 - abbreviate_timestamp_suffix(s, " day", "d"), 45 - abbreviate_timestamp_suffix(s, " week", "w"), 46 - abbreviate_timestamp_suffix(s, " month", "mo"), 47 - abbreviate_timestamp_suffix(s, " year", "y"), 48 - s 49 - ) 50 - ''' 51 - 52 - "format_timestamp(timestamp)" = ''' 53 - coalesce( 54 - if(timestamp.after("1 minute ago"), label("timestamp", "<1m")), 55 - abbreviate_relative_timestamp(timestamp.ago().remove_suffix(' ago').remove_suffix('s')) 56 - ) 57 - ''' 58 - 59 - [templates] 60 - git_push_bookmark = '"kacaii/push-" ++ change_id.short()' 61 - 62 27 [revset-aliases] 63 28 "stack()" = "ancestors(reachable(@, mutable()), 2)" 64 29 "stack(x)" = "ancestors(reachable(x, mutable()), 2)" ··· 71 36 fetch = ["git", "fetch"] 72 37 clone = ["git", "clone"] 73 38 init = ["git", "init", "--colocate"] 74 - mm = ["bookmark", "move", "main", "--to", "@-"] 75 39 mark = ["bookmark", "set", "-r", "@"] 76 40 track = ["bookmark", "track"] 77 41 push = ["git", "push"] 78 42 tug = ["bookmark", "move", "--from", "heads(::@- & bookmarks())", "--to", "@-"] 79 - 80 - [colors] 81 - change_id = "magenta" 82 - author = { fg = "white" } 83 - bookmarks = { fg = "red" } 84 - commit_id = { fg = "yellow" } 85 - timestamp = { fg = "blue", dim = true } 86 - "diff token" = { underline = false } 87 - "description placeholder" = { fg = "bright black" } 88 - "empty description placeholder" = { fg = "bright black" } 89 - 90 - node = { bold = false } 91 - "node normal" = { bold = false } 92 - "node elided" = "yellow" 93 - "node working_copy" = "green" 94 - "node conflict" = "red" 95 - "node immutable" = { fg = "white", bold = true } 96 - 97 - prefix = { bold = true, fg = "magenta" } 98 - rest = { bold = false, fg = "bright black" } 99 - working_copy = { bold = true } 100 - "working_copy change_id" = { underline = true } 101 - "working_copy author" = { fg = "white", underline = true } 102 - "working_copy commit_id" = { fg = "red", underline = true } 103 - "working_copy timestamp" = { fg = "blue", underline = true } 104 - "working_copy empty" = { fg = "bright black" } 105 - "working_copy placeholder" = { fg = "red" } 106 - "working_copy description" = { fg = "white", bold = false } 107 - "working_copy description placeholder" = { fg = "bright black" } 108 - "working_copy empty description placeholder" = { fg = "bright black" } 109 - 110 - [gg.ui] 111 - recent-workspaces = ["/home/kacaii/dotfiles"]