Remember cursor location in opened files

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

View File

@ -26,6 +26,10 @@
;;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)
;;Remember and restore the last cursor location of opened files
(save-place-mode 1)
;;Make ESCquit prompts
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)