Skip to content

Commit

Permalink
Add some markup config; Bump the number of saved items by recentf.
Browse files Browse the repository at this point in the history
  • Loading branch information
regob committed Dec 11, 2024
1 parent 4648591 commit a1ddc55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions lisp/init-markup.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
:ensure (:source "ELPA")
)


(use-package sql
:ensure nil)

(provide 'init-markup)

;;; init-markup.el ends here
4 changes: 1 addition & 3 deletions lisp/init-sessions.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
;;; Commentary:
;;; Code:



(use-package session
:ensure (:source "MELPA")
:config
Expand All @@ -17,7 +15,7 @@
(use-package recentf
:ensure nil
:config
(setq recentf-max-saved-items 300)
(setq recentf-max-saved-items 1000)
(recentf-mode)
(add-hook 'delete-frame-functions (lambda (_) (recentf-save-list))))

Expand Down
2 changes: 2 additions & 0 deletions lisp/init-smartparens.el
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
(prog-mode . smartparens-mode)
(org-mode . smartparens-mode)
(ielm . smartparens-mode)
(yaml-mode . smartparens-mode)
(js-json-mode . smartparens-mode)
(inferior-python-mode . smartparens-mode))

:bind
Expand Down

0 comments on commit a1ddc55

Please sign in to comment.