Skip to content

Instantly share code, notes, and snippets.

@mrosset
Last active May 12, 2018 08:22
Show Gist options
  • Save mrosset/e6a36239f4771c2c26e4f6d885dd2abc to your computer and use it in GitHub Desktop.
Save mrosset/e6a36239f4771c2c26e4f6d885dd2abc to your computer and use it in GitHub Desktop.
(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