Compare commits

...

2 commits

Author SHA1 Message Date
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
ba2d6bd3a7 pass: Merge config of pass into the use-package block
Merge the configuration of pass into the use-package block.
2024-05-28 11:11:54 +02:00
4 changed files with 11 additions and 5 deletions

5
.emacs.d/config/man.el Normal file
View file

@ -0,0 +1,5 @@
(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))

View file

@ -2,7 +2,7 @@
:ensure t
:init
;; from https://github.com/ecraven/ivy-pass/blob/master/ivy-pass.el
(setq password-store-password-length 32))
;; configure ivy-pass key binding
(global-set-key [?\C-x ?p] 'ivy-pass)
(setq password-store-password-length 32)
:config
;; configure ivy-pass key binding
(global-set-key [?\C-x ?p] 'ivy-pass))

View file

@ -57,7 +57,7 @@ symbols, which are converted to strings, and suffixed with \".el\"."
:group 'config-snippets
:type '(repeat directory))
(setq config-snippets '(base backups c calendar dev functions git gpg org pass ripgrep rust wl yaml))
(setq config-snippets '(base backups c calendar dev functions git gpg man org pass ripgrep rust wl yaml))
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path)
(dolist (snippet config-snippets)

View file

@ -7,6 +7,7 @@
!/.emacs.d/config/functions.el
!/.emacs.d/config/git.el
!/.emacs.d/config/gpg.el
!/.emacs.d/config/man.el
!/.emacs.d/config/org.el
!/.emacs.d/config/pass.el
!/.emacs.d/config/ripgrep.el