Last active
May 12, 2018 08:22
-
-
Save mrosset/e6a36239f4771c2c26e4f6d885dd2abc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun my-timer () | |
(setq dashboard-banner-logo-title (format "Emacs ready in %.2f seconds with %s garbage collections." | |
(float-time | |
(time-subtract after-init-time before-init-time)) gcs-done))) | |
(use-package dashboard | |
:init | |
(add-hook 'dashboard-mode-hook 'my-timer) | |
:config | |
(dashboard-setup-startup-hook)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment