Compare commits

..
9 Commits
Author SHA1 Message Date
xavier 5d7933ac5a feat(starship): Improve configuration for starship.rs prompt for zsh 2026-08-19 21:34:11 +02:00
xavier e57f78c957 feat(starship): Improve configuration for starship.rs 2026-08-19 21:34:11 +02:00
xavier 48d328ea27 feat(starship): Fix symbol direction in zsh prompt 2026-08-19 21:34:11 +02:00
xavier 55b9a4e8c2 feat(starship): Cosmetic change for zsh prompt 2026-08-19 21:34:11 +02:00
xavier 990cd6b506 feat(zsh): Add support for zsh 2026-08-19 21:34:11 +02:00
xavier 24013acd34 test: Prepare for cloning password store 2026-08-19 21:34:11 +02:00
xavier 5076e78819 feat: Add TODO.md 2026-08-19 21:34:11 +02:00
xavierandClaude Sonnet 5 5987036389 feat(tools): Add copilot to the ai toolbox
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-18 23:07:01 +02:00
xavierandClaude Sonnet 5 75ae00ce12 fix(mise): Trigger mise install when templated config data changes
run_onchange_after_mise-install.sh.tmpl hashed the raw contents of
config.toml.tmpl to detect changes, but that file only pulls in real
content through named templates ({{ template "..." }}) fed by
.chezmoidata. Editing that data left the raw .tmpl text (and thus the
hash) unchanged, so mise install silently stopped firing.

Switch the named-template calls to includeTemplate, which chezmoi can
resolve outside the normal source-state parsing pass (unlike the
template action, see https://github.com/twpayne/chezmoi/issues/3334).
This lets the run_onchange script hash the actual rendered output via
includeTemplate instead of the static source text.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-18 23:00:36 +02:00
3 changed files with 7 additions and 5 deletions
+1
View File
@@ -54,6 +54,7 @@ tools:
- claude
- gemini-cli
- codex
- copilot
# # Password managers
# # vault = "latest"
+3 -3
View File
@@ -1,4 +1,4 @@
{{ template "chezmoi-managed-header" . }}
{{ includeTemplate "chezmoi-managed-header" . }}
[settings]
experimental = true
@@ -9,7 +9,7 @@ binstall = true
######################### [ Bootstrap ] #########################
[bootstrap.packages]
{{ template "mise-bootstrap-packages" . }}
{{ includeTemplate "mise-bootstrap-packages" . }}
# coreutils grep less
# tig
@@ -36,7 +36,7 @@ neovim = "latest"
tree-sitter = "latest"
# Tools automated with chezmoi
{{ template "mise-tools" . }}
{{ includeTemplate "mise-tools" . }}
# Password managers
# vault = "latest"
+3 -2
View File
@@ -1,6 +1,7 @@
#!/usr/bin/env bash
# Déclencheur automatique : ce script se réexécutera si le config.toml de mise change.
# hash: {{ include "private_dot_config/mise/config.toml.tmpl" | sha256sum }}
# Déclencheur automatique : ce script se réexécutera si le config.toml de mise change,
# y compris quand seules les données (.chezmoidata) utilisées par ses templates changent.
# hash: {{ includeTemplate "private_dot_config/mise/config.toml.tmpl" . | sha256sum }}
export PATH="${HOME}/.local/bin:$PATH"