From db742d66b4cfbca42d0f464b5b918172a1f2b202 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Tue, 24 Jun 2025 01:08:12 +0200 Subject: [PATCH] feat: add config for chezmoi --- config.d/chezmoi.bash | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config.d/chezmoi.bash diff --git a/config.d/chezmoi.bash b/config.d/chezmoi.bash new file mode 100644 index 0000000..65f4b46 --- /dev/null +++ b/config.d/chezmoi.bash @@ -0,0 +1,15 @@ +#!/bin/bash + +# Configuration for chezmoi + +# git_repo="https://github.com/AstroNvim/template" +# git_branch="main" + +git_repo="https://gitea.cloud.logerais.com/xavier/config-chezmoi.git" +git_branch="main" + +if (command -v chezmoi); then + chezmoi init https://gitea.cloud.logerais.com/xavier/config-chezmoi.git + chezmoi apply ~/.config/mise + mise install +fi