16 lines
344 B
EmacsLisp
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
|