First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

18
lisp/ux/startup.el Normal file
View File

@@ -0,0 +1,18 @@
;;; startup.el --- Configure Emacs startup behavior -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
;; startup.el has no `provide' statement.
(progn
(validate-setq
;; Do not show the splash screen or message
inhibit-startup-screen t
inhibit-startup-echo-area-message (getenv "USER"))
(use-package dashboard
:config
(dashboard-setup-startup-hook)))
(provide 'ux/startup)
;;; startup.el ends here