diff options
author | Jesús <heckyel@hyperbola.info> | 2019-05-06 22:57:12 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-05-06 22:57:12 -0500 |
commit | 95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e (patch) | |
tree | 58d6f028bae59d55853019e7505266be902b47ab | |
parent | fbde1349df8d52caf7767e9e309fa69189e0e34c (diff) | |
download | emacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.tar.lz emacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.tar.xz emacs-personal-95f6e1b85ddcf492cfe8fd3b7a66208ccb0dac5e.zip |
added welcome message to emacs
-rw-r--r-- | init.el | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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")) |