From 02fa4aaee58146b19db0e468932833e57a6907bb Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 29 Nov 2019 01:20:19 +0100 Subject: [PATCH] Emacs: Raise number of max saved buffers to 200. --- init/basics/global-variables.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/basics/global-variables.el b/init/basics/global-variables.el index 00cd9b4..b688b8c 100644 --- a/init/basics/global-variables.el +++ b/init/basics/global-variables.el @@ -1,6 +1,6 @@ ;;; global-variables.el --- Set global variables. -*- lexical-binding: t; -*- -;; Time-stamp: <2019-11-20T03:49:41+00:00> +;; Time-stamp: <2019-11-29T00:20:04+00:00> ;;; Commentary: ;; * Set `slow-computer'. @@ -43,7 +43,7 @@ (user-full-name "tastytea") (user-mail-address "tastytea@tastytea.de") - (recentf-max-saved-items 40) ; Keep this number of buffers in history. + (recentf-max-saved-items 200) ; Keep this number of buffers in history. ;; Preference of authentication sources. (auth-sources '("~/.authinfo.gpg" "~/.authinfo" "~/.netrc"))