;;; 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)