Add mode line and built-in packages upgrade settings

This commit is contained in:
James Cherti
2024-08-13 09:39:48 -04:00
parent 32043bfebe
commit 6538ccda59
2 changed files with 16 additions and 0 deletions

View File

@@ -258,6 +258,12 @@
(setq frame-title-format minimal-emacs-frame-title-format
icon-title-format minimal-emacs-frame-title-format)
;; Emacs comes with several built-in packages, such as Org-mode, that are
;; essential for many users. However, these built-in packages are often not the
;; latest versions available. Ensure that your built-in packages are always up
;; to date with:
(setq package-install-upgrade-built-in t)
;;; Load post-early-init.el
(minimal-emacs-load-user-init "post-early-init.el")

10
init.el
View File

@@ -298,6 +298,16 @@
;; otherwise empty.
(setq comment-empty-lines t)
;;; Mode line
;; Setting `display-time-default-load-average' to nil makes Emacs omit the load
;; average information from the mode line.
(setq display-time-default-load-average nil)
;; Display the current line and column numbers in the mode line
(setq line-number-mode t)
(setq column-number-mode t)
;;; Load post-init.el
(minimal-emacs-load-user-init "post-init.el")