Skip to content

Commit

Permalink
core-dotspacemacs.el: Fix default value of dotspacemacs-startup-buffe…
Browse files Browse the repository at this point in the history
…r-show-icons

This is the documented default value in .spacemacs.template, so users
who simply haven't updated their .spacemacs yet to include this
variable at all should get the nil value rather than t.
  • Loading branch information
bcc32 authored and smile13241324 committed Oct 9, 2024
1 parent 9cd28a5 commit f25396a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/core-dotspacemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -220,13 +220,13 @@ will be applied to scale the banner."
'spacemacs-dotspacemacs-init)

(spacemacs|defc dotspacemacs-startup-buffer-show-version t
"If true, show Spacemacs and Emacs version at the top right of the
"If non-nil, show Spacemacs and Emacs version at the top right of the
Spacemacs buffer."
'boolean
'spacemacs-dotspacemacs-init)

(spacemacs|defc dotspacemacs-startup-buffer-show-icons t
"If true, show file icons for entries and headings on spacemacs buffer.
(spacemacs|defc dotspacemacs-startup-buffer-show-icons nil
"If non-nil, show file icons for entries and headings on spacemacs buffer.
This has no effect in terminal or if \"all-the-icons\" is not installed."
'boolean
'spacemacs-dotspacemacs-init)
Expand All @@ -242,7 +242,7 @@ This has no effect in terminal or if \"all-the-icons\" is not installed."
'spacemacs-dotspacemacs-init)

(spacemacs|defc dotspacemacs-check-for-update nil
"If non nil then spacemacs will check for updates at startup
"If non-nil then spacemacs will check for updates at startup
when the current branch is not `develop'. Note that checking for
new versions works via git commands, thus it calls GitHub services
whenever you start Emacs."
Expand Down

0 comments on commit f25396a

Please sign in to comment.