Published in: Emacs Lisp
Configure the Persistent.el module. Persistent.el allows emacs to remember command histories across sessions.
;;set up persistent.el ;;to remember histories across emacs sessions (setq persistent-session-list `(read-expression-history extended-command-history find-tag-history query-replace-history grep-history file-name-history compile-history kill-ring replace-string-history replace-regex-history query-replace-regex-history minibuffer-history shell-command-history buffer-name-history find-file-history )) (require `persistent) (persistent-session-load-from-alist) (setq persistent-session-size 500)
You need to login to post a comment.
