feat: add Makefile target to compare host and repo mcphub configs

This commit is contained in:
João Paulo Dubas 2025-06-23 21:12:05 -03:00
parent 400a7f2488
commit 21b067a78a
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:5HaPRx+Z8Eornc4BTBERSgNxoJQR09Ckn0dMtEnxrMY

View File

@ -16,6 +16,10 @@ patch_init_lua: ## create a patch file with the changes made in kickstart's init
patch_init_lua_dry_run: ## show the changes made in kickstart's init.lua file
@cd $(neovim_config_dir) && git diff --patch init.lua
.PHONY: diff_mcphub_config
diff_mcphub_config: ## compare host's mcphub config with repository's config
@nvim -d ~/.config/mcphub/servers.json ./config/mcphub/servers.json
.PHONY: diff_mise_config
diff_mise_config: ## compare host's mise config with repository's config
@nvim -d ~/.config/mise/config.toml ./config/mise/config.toml