Updates to include new configs

This commit is contained in:
William Moore 2024-12-21 21:23:51 -06:00
parent 96a67e3d8e
commit 519104a0bb

11
init.el
View File

@ -4,6 +4,10 @@
(global-ede-mode t) (global-ede-mode t)
(global-font-lock-mode t) (global-font-lock-mode t)
;; Remembering minibuffer prompt history
(setq history-length 25)
(savehist-mode 1)
;; Save and restore the place in the file ;; Save and restore the place in the file
(save-place-mode 1) (save-place-mode 1)
@ -19,6 +23,13 @@
;; whomp helpers ;; whomp helpers
(require 'whomp-helpers) (require 'whomp-helpers)
;; Keyboard, rather than GUI, focus
(setq use-dialog-box nil)
;; Auto revert buffers when changed outside Emacs
(global-auto-revert-mode 1)
(setq global-auto-revert-non-file-buffers t)
(setq browse-url-browser-function 'browse-url) (setq browse-url-browser-function 'browse-url)
(setq custom-init "~/.emacs.d/custom-init.el") (setq custom-init "~/.emacs.d/custom-init.el")