.emacs.d/inits/40-git.el
2026-01-10 18:58:26 +09:00

14 lines
444 B
EmacsLisp

;;-- git-gutter
(use-package git-gutter
:custom
(git-gutter:modified-sign "~")
(git-gutter:added-sign "+")
(git-gutter:deleted-sign "-")
:custom-face
(git-gutter:modified ((t (:background "#f1fa8c"))))
(git-gutter:added ((t (:background "#50fa7b"))))
(git-gutter:deleted ((t (:background "#ff79c6"))))
:config
(global-git-gutter-mode +1))
(set-face-foreground 'font-lock-comment-face "#6a5acd")