mirror of
https://github.com/lliding/ld-emacs.git
synced 2025-10-13 05:23:05 +00:00
15 lines
280 B
EmacsLisp
15 lines
280 B
EmacsLisp
;; -*- coding: utf-8; -*-
|
|
;;; Require:
|
|
(require 'auto-save)
|
|
|
|
;;; Code:
|
|
;; auto save after n second(s)
|
|
;; (setq auto-save-idle 1)
|
|
(setq auto-save-delete-trailing-whitespace t)
|
|
(setq auto-save-silent t)
|
|
(auto-save-enable)
|
|
|
|
(provide 'init-auto-save)
|
|
|
|
;;; init-auto-save.el ends here
|