Emacs 自動保存 自動デスクトップ保存 



Emacs 設定 ちらうら

最小限

;;;初期設定
(package-initialize)
(setq package-archives
'(("gnu" . "http://elpa.gnu.org/packages/")
("melpa" . "http://melpa.org/packages/")
("org" . "http://orgmode.org/elpa/")))
;;lisp Load Path

;; パッケージ情報の更新
(package-refresh-contents)

(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages '(real-auto-save calfw-org)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)

(desktop-save-mode 1)
(require 'real-auto-save)
(setq real-auto-save-interval 1) ;3秒後に自動保存
;; (add-hook 'prog-mode-hook 'real-auto-save-mode)
(add-hook 'find-file-hook 'real-auto-save-mode)

この記事が気に入ったらサポートをしてみませんか?