dotfiles-emacs/.emacs.d/config/man.el
finga faa5a9908f man: Add config for man
Add a configuration for man so that the man-pages are shown in color.
2024-05-28 11:14:21 +02:00

5 lines
207 B
EmacsLisp

(use-package man
:ensure t
:config
(set-face-attribute 'Man-overstrike nil :inherit font-lock-type-face :bold t)
(set-face-attribute 'Man-underline nil :inherit font-lock-keyword-face :underline t))