Don't date-check loads
This commit is contained in:
parent
a5056b71ed
commit
422df5412a
1 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
(make-directory my-tmp-dir-backup t)
|
(make-directory my-tmp-dir-backup t)
|
||||||
(make-directory my-tmp-dir-autosave t))
|
(make-directory my-tmp-dir-autosave t))
|
||||||
|
|
||||||
(setq load-prefer-newer t)
|
;; (setq load-prefer-newer t)
|
||||||
(setq debug-on-quit DEBUG-MODE)
|
(setq debug-on-quit DEBUG-MODE)
|
||||||
|
|
||||||
(require 'shut-up)
|
(require 'shut-up)
|
||||||
|
@ -133,12 +133,12 @@
|
||||||
;; Save history across sessions
|
;; Save history across sessions
|
||||||
(require 'savehist)
|
(require 'savehist)
|
||||||
(setq savehist-file (concat my-tmp-dir "savehist") ; keep the home clean
|
(setq savehist-file (concat my-tmp-dir "savehist") ; keep the home clean
|
||||||
|
history-length 1000
|
||||||
savehist-additional-variables '(kill-ring
|
savehist-additional-variables '(kill-ring
|
||||||
global-mark-ring
|
global-mark-ring
|
||||||
search-ring
|
search-ring
|
||||||
regexp-search-ring
|
regexp-search-ring
|
||||||
extended-command-history)
|
extended-command-history))
|
||||||
history-length 1000)
|
|
||||||
(savehist-mode 1)
|
(savehist-mode 1)
|
||||||
|
|
||||||
;; Save cursor location across sessions
|
;; Save cursor location across sessions
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue