2020-06-02 15:18:03 +02:00
|
|
|
;;; libs.el --- Libraries -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
|
2020-11-26 12:49:53 +01:00
|
|
|
(require 'basics/package-management)
|
|
|
|
|
2020-06-02 15:18:03 +02:00
|
|
|
;; Functions to manipulate colors, including RGB hex strings.
|
|
|
|
(use-package hexrgb
|
|
|
|
:commands (hexrgb-increment-equal-rgb))
|
|
|
|
|
2020-12-08 13:03:55 +01:00
|
|
|
;; Sorting and filtering, library.
|
2020-12-08 14:16:58 +01:00
|
|
|
(use-package prescient
|
2020-12-08 22:01:00 +01:00
|
|
|
:demand t
|
2020-12-08 15:11:50 +01:00
|
|
|
:hook (after-init . prescient-persist-mode))
|
2020-12-08 13:03:55 +01:00
|
|
|
|
2020-06-02 15:18:03 +02:00
|
|
|
(provide 'misc/libs)
|
|
|
|
;;; libs.el ends here
|