From 04f64eda5e87152a5ac8d4c36089e6cd7f189e48 Mon Sep 17 00:00:00 2001 From: kj Date: Tue, 26 Aug 2025 13:25:36 -0300 Subject: [PATCH] Add blamer package Actually there is vc-msg, vc-anotate, vc-region-history, etc. that do similar things, but i will add this also. --- configs/init-vc.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/init-vc.el b/configs/init-vc.el index 99130e8..ff6758b 100644 --- a/configs/init-vc.el +++ b/configs/init-vc.el @@ -13,6 +13,11 @@ ;;; Code: +;; Mostrar el commit de la lĂ­nea actual +(use-package blamer + :ensure t + :bind ("C-c i" . blamer-show-posframe-commit-info)) + ;; Resolver diferencias entre 2 archivos o versiones del mismo. (use-package ediff :ensure nil