Files
dotemacs/lisp/ux/cache.el
2022-01-09 21:19:46 +01:00

16 lines
344 B
EmacsLisp

;;; cache.el --- Configure Emacs persistent caches -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
;; https://github.com/sigma/pcache
;; Persistent caching for Emacs
(use-package pcache
:pin "MELPA"
:init
(setq-default
pcache-directory (path-join *user-cache-directory* "pcache")))
(provide 'ux/cache)
;;; cache.el ends here