From 21b067a78a669702cbfde9ad8c3bc2e4ebdac198 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Mon, 23 Jun 2025 21:12:05 -0300 Subject: [PATCH] feat: add Makefile target to compare host and repo mcphub configs --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 8bfcf19..180d1b3 100644 --- a/Makefile +++ b/Makefile @@ -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