0
fork

Configure Feed

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

Signing off more often now!


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

+23 -13
+13 -2
configs/fish/config/20-aliases.fish
··· 124 124 # Zellij aliases and completion 125 125 # zellij setup --generate-completion fish | source 126 126 abbr ide 'zellij --layout ide' 127 - # JJ-related abbreviations 127 + # JJ-related abbreviations and aliases 128 128 abbr jje 'jj edit' 129 - abbr jjd 'jj describe @' 129 + # ===================================================== --> Please do not break 130 + alias jjd 'jj desc @ -m " 131 + 132 + 133 + Signed-off-by: $(git config user.name) <$(git config user.email)>" && jj desc @ && jj sign -r @' 134 + # ===================================================== --> Please do not break 135 + function jjdm 136 + jj desc @ -m "$argv 137 + 138 + 139 + Signed-off-by: $(git config user.name) <$(git config user.email)>" && jj sign -r @ 140 + end 130 141 abbr jjda 'jj describe @ -m "$(date)"' 131 142 abbr jjs 'jj show' 132 143 abbr jjn 'jj next --edit'
+1
home/modules/development/jujutsu.nix
··· 30 30 streampager.wrapping = "none"; 31 31 movement.edit = true; 32 32 default-command = "status"; 33 + show-cryptographic-signatures = true; 33 34 }; 34 35 aliases = { 35 36 # Moves bookmarks from the previous commit to your current one
+9 -11
home/modules/shell.nix
··· 27 27 28 28 }; 29 29 30 - 31 - services.gpg-agent = { 32 - enable = true; 33 - pinentryPackage = pkgs.pinentry-qt; 34 - 35 - defaultCacheTtl = 28800; 36 - maxCacheTtl = 28800; 37 - }; 38 - home.file.".ssh/config_shared" = { 39 - source = ../../configs/ssh-config; 40 - }; 30 + services.gpg-agent = { 31 + enable = true; 32 + pinentry.package = pkgs.pinentry-qt; 41 33 34 + defaultCacheTtl = 28800; 35 + maxCacheTtl = 28800; 36 + }; 37 + home.file.".ssh/config_shared" = { 38 + source = ../../configs/ssh-config; 39 + }; 42 40 43 41 xdg.configFile."fish" = { 44 42 source = ../../configs/fish;