From fee876b87ff84aace90be8b328719054bf5223f7 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 19 Sep 2024 11:04:54 +0200 Subject: [PATCH] vcs: Fix jj program structure --- .dotter/global.toml | 2 +- vcs/jj/{ => config}/jj/config.toml | 2 +- vcs/jj/{ => config}/sh/alias.d/jj.sh | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename vcs/jj/{ => config}/jj/config.toml (92%) rename vcs/jj/{ => config}/sh/alias.d/jj.sh (100%) diff --git a/.dotter/global.toml b/.dotter/global.toml index 34ad5fa..8b0306c 100644 --- a/.dotter/global.toml +++ b/.dotter/global.toml @@ -16,7 +16,7 @@ sh = "~" [vcs.files] "vcs/README.md" = { target = "~/NOWHERE", type = "symbolic", if = "false" } "vcs/git/config" = "~/.config" -"vcs/jj" = "~/.config" +"vcs/jj/config" = "~/.config" "vcs/gitignore/config" = "~/.config" "vcs/gitignore/local" = "~/.local" vcs = "~" diff --git a/vcs/jj/jj/config.toml b/vcs/jj/config/jj/config.toml similarity index 92% rename from vcs/jj/jj/config.toml rename to vcs/jj/config/jj/config.toml index 603c3b2..eadbfc9 100644 --- a/vcs/jj/jj/config.toml +++ b/vcs/jj/config/jj/config.toml @@ -3,7 +3,7 @@ email = "marty.oehme@gmail.com" name = "Marty Oehme" [signing] -sign-all = true +sign-all = false backend = "gpg" key = "73BA40D5AFAF49C9" diff --git a/vcs/jj/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh similarity index 100% rename from vcs/jj/sh/alias.d/jj.sh rename to vcs/jj/config/sh/alias.d/jj.sh