Emacs: Load diminish in global-variables.el.

This commit is contained in:
tastytea 2020-03-11 12:10:33 +01:00
parent 6adb4c20ee
commit 5fcc5331b3
2 changed files with 7 additions and 4 deletions

View File

@ -1,8 +1,9 @@
;;; global-variables.el --- Set some global variables. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-10T14:31:32+0100>
;; Time-stamp: <2020-03-11T12:10:13+0100>
;;; Commentary:
;; * Load diminish.
;; * Banish customizations.
;; * Fewer startup messages.
;; * Configure backup settings.
@ -13,6 +14,9 @@
;;; Code:
;; Hide minor-mode from modeline. Loaded here because a lot of recipes use it.
(use-package diminish)
(use-package emacs
:ensure nil
:diminish abbrev-mode

View File

@ -1,6 +1,6 @@
;;; package-management.el --- Initialize package management. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-11T10:41:09+0100>
;; Time-stamp: <2020-03-11T12:08:52+0100>
;;; Commentary:
;; * Set up package sources and their priorities.
@ -40,8 +40,7 @@
;; Always install packages if they are not present.
(use-package use-package
:custom (use-package-always-ensure t)
:config (use-package diminish)) ; Hide minor-mode from modeline.
:custom (use-package-always-ensure t))
;; Autocompile files on load.
(use-package auto-compile