dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit fab961d7a0214a4bc315d5ec202450fb03f8a5f8
parent a7f45126d728d21e4820104f1e1c771b757fe88d
Author: Lukas Henkel <lh@entf.net>
Date:   Fri, 12 May 2023 19:05:57 +0200

Enable recentf

Diffstat:
M.gitignore | 1+
Minit.el | 2++
2 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -3,6 +3,7 @@ .lsp-session-* .org-id-locations auto-save-list +recentf backup bookmarks config.el diff --git a/init.el b/init.el @@ -353,6 +353,8 @@ '(read-buffer-completion-ignore-case t) '(read-file-name-completion-ignore-case t) '(reb-re-syntax 'string) + '(recentf-max-saved-items 200) + '(recentf-mode t) '(repeat-mode t) '(ring-bell-function 'ignore) '(save-place-mode t)