Save history in minibuffer prompts

This commit is contained in:
Gregorio Reyes 2023-11-11 11:15:25 -06:00
parent e83977ad25
commit e65650d9df
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@
;;Enable mode to quickly open recent files
(recentf-mode 1) ;;Configured in custom-keys
;;Save what you enter into minibuffer prompts
(setq history-length 25)
(savehist-mode 1) ;;Navigate history using M-n and M-p commands (similar to C-n and C-p)
;;Make ESCquit prompts
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)