Add more defvar to customize minimal-emacs.d

This commit is contained in:
James Cherti
2024-08-06 12:35:37 -04:00
parent 42c09e66f4
commit 925a7cf46a
2 changed files with 21 additions and 3 deletions

View File

@@ -77,6 +77,9 @@ git clone https://github.com/jamescherti/minimal-emacs.d ~/.emacs.d
- Sets default fringe widths and buffer boundaries.
- Configures smooth scrolling and cursor behavior for a more seamless editing experience.
10. **Miscellaneous**
- Configure recentf, savehist, and auto-save
## Update
To keep your Emacs configuration up to date, you can pull the latest changes from the repository. Run the following command in your terminal:

21
init.el
View File

@@ -118,7 +118,12 @@
(setq window-divider-default-bottom-width 1
window-divider-default-places t
window-divider-default-right-width 1)
(add-hook 'after-init-hook #'window-divider-mode)
(defvar minimal-emacs-window-divider-mode-enabled t
"Non-nil to enable `window-divider-mode'.")
(when minimal-emacs-window-divider-mode-enabled
(add-hook 'after-init-hook #'window-divider-mode))
;;; Backup files
@@ -171,11 +176,21 @@
;; recently.
(setq recentf-max-saved-items 300) ; default is 20
(setq recentf-auto-cleanup 'mode)
(add-hook 'after-init-hook #'recentf-mode)
(defvar minimal-emacs-recentf-enabled t
"Non-nil to enable `recentf'.")
(when minimal-emacs-recentf-enabled
(add-hook 'after-init-hook #'recentf-mode))
;;; savehist
(setq savehist-save-minibuffer-history t) ;; Default
(add-hook 'after-init-hook #'savehist-mode)
(defvar minimal-emacs-savehist-enabled t
"Non-nil to enable `savehist'.")
(when minimal-emacs-savehist-enabled
(add-hook 'after-init-hook #'savehist-mode))
;;; Subr
;; Allow for shorter responses: "y" for yes and "n" for no.