summaryrefslogtreecommitdiff
path: root/init/savehist/init-savehist.el
blob: 2089704f60755cfbabdacaf42e0ade55b1b87586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(require 'savehist)

(setq savehist-file (expand-file-name "savehist" user-emacs-directory)
      savehist-save-minibuffer-history t)

(add-to-list 'savehist-additional-variables 'command-history)

(unless (file-exists-p savehist-file)
  (make-empty-file savehist-file))

(savehist-mode 1)

(provide 'init-savehist)