summaryrefslogtreecommitdiffstats
path: root/lisp/init-recentf.el
blob: 6d379e060f182bafe3d9316b3b19be4c7fa66efa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; init-recentf.el --- configure recentf  -*- lexical-binding:t -*-
;;; Commentary:
;;; Code:

(use-package recentf
  :init
  ;; set number of entries to save
  (setq recentf-max-saved-items 1000)

  :config
  (recentf-mode 1))

(provide 'init-recentf)

;;; init-recentf.el ends here