From a10d48d650b235c186dce7bfcf7f49b67885e432 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Tue, 26 Jul 2016 20:53:26 -0500 Subject: [PATCH] Disable emacs spalsh screen --- home/.emacs.d/init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el index 6909ead..dad45d2 100644 --- a/home/.emacs.d/init.el +++ b/home/.emacs.d/init.el @@ -72,6 +72,9 @@ (when (not (package-installed-p pkg)) (package-install pkg)))) +;; Disable emacs help screen +(setq inhibit-splash-screen t) + ;; Markdown Mode Configuration (autoload 'markdown-mode "markdown-mode" "Major mode for editing Markdown files" t)