Emacs: doom-modeline: Transform setq to custom.

This commit is contained in:
tastytea 2020-02-03 04:32:52 +01:00
parent e4fc762809
commit 5f4ea948ef
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-27T02:37:47+0100>
;; Time-stamp: <2020-02-03T04:26:50+0100>
;;; Commentary:
@ -67,10 +67,10 @@
(column-number-mode t) ; Show column numbers in modeline.
(size-indication-mode) ; Buffer size display in the modeline.
:config
(setq doom-modeline-minor-modes nil
;; doom-modeline-buffer-file-name-style 'relative-to-project
doom-modeline-buffer-file-name-style 'truncate-except-project)
:custom
(doom-modeline-minor-modes nil)
(doom-modeline-buffer-file-name-style 'truncate-except-project)
:hook
(after-init . doom-modeline-mode)
)