.emacs.d/lisp/init-save.el

16 lines
420 B
EmacsLisp
Raw Normal View History

2024-12-28 10:59:10 +08:00
;;; init-save.el --- Save settings -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; auto-save
2024-12-28 10:59:10 +08:00
(add-to-list 'load-path "~/.emacs.d/site-lisp/auto-save/")
(require 'auto-save)
(auto-save-enable)
(setq auto-save-silent t)
(provide 'init-save)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; init-save.el ends here