aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-05-06 22:57:12 -0500
committerJesús <heckyel@hyperbola.info>2019-05-06 22:57:12 -0500
commit95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e (patch)
tree58d6f028bae59d55853019e7505266be902b47ab
parentfbde1349df8d52caf7767e9e309fa69189e0e34c (diff)
downloademacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.tar.lz
emacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.tar.xz
emacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.zip
added welcome message to emacs
-rw-r--r--init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el
index 5aef980..da950ef 100644
--- a/init.el
+++ b/init.el
@@ -9,6 +9,10 @@
(when (version<= emacs-version "24")
(error "This is made form Emacs >=24"))
+;;; Welcome message
+(setq-default initial-scratch-message
+ (concat ";; Happy hacking, " user-login-name " - Emacs loves you!\n\n"))
+
(defconst emacs-start-time (current-time))
(add-to-list 'load-path (concat user-emacs-directory "modules"))