.emacs.d/init.d/misc/libs.el
tastytea 6e129143b0 Emacs: Re-demand prescient.
It has to be there before after-init-hook is run.
2020-12-08 22:01:00 +01:00

19 lines
433 B
EmacsLisp

;;; libs.el --- Libraries -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'basics/package-management)
;; Functions to manipulate colors, including RGB hex strings.
(use-package hexrgb
:commands (hexrgb-increment-equal-rgb))
;; Sorting and filtering, library.
(use-package prescient
:demand t
:hook (after-init . prescient-persist-mode))
(provide 'misc/libs)
;;; libs.el ends here