Files
lypacamacs/packages/system-packages.el
T
2026-05-26 03:18:34 +02:00

33 lines
690 B
EmacsLisp

;;; system-packages.el --- System and utility package configuration -*- lexical-binding: t; -*-
(use-package clipetty
:hook (after-init . global-clipetty-mode))
(use-package dirvish
:defer t
:config
(dirvish-peek-mode)
(dirvish-side-follow-mode)
(add-hook 'dirvish-directory-view-mode 'diredfl-mode))
(use-package embark
:bind
(("C-." . embark-act)
("C-h B" . embark-bindings)
)
:config
(add-to-list 'display-buffer-alist
'("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*"
nil
(window-parameters (mode-line-format . none))))
)
(use-package benchmark-init
:hook
(after-init . benchmark-init/deactivate))
(provide 'system-packages)