From 9e7801182981c3d326ff9a292b509a47929115f7 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Tue, 14 Feb 2012 17:48:03 +0200 Subject: [PATCH] minor change --- init.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index c6fba20..4819f3e 100644 --- a/init.el +++ b/init.el @@ -34,7 +34,8 @@ ;;; Code: (require 'cl) -(message "%s" "Emacs Prelude is powering up. Be patient, Master.") +(message "Emacs Prelude is powering up... Be patient, Master %s!" + (getenv "USER")) ;; On OS X Emacs doesn't use the shell PATH if it's not started from ;; the shell. If you're using homebrew modifying the PATH is essential. @@ -54,6 +55,7 @@ ELPA (or Marmalade).") changes in this directory. All Emacs Lisp files there are loaded automatically by Prelude.") +;; add Prelude's directories to Emacs's `load-path' (add-to-list 'load-path prelude-modules-dir) (add-to-list 'load-path prelude-vendor-dir) (add-to-list 'load-path prelude-personal-dir) @@ -92,6 +94,7 @@ by Prelude.") (when (file-exists-p prelude-personal-dir) (mapc 'load (directory-files prelude-personal-dir nil "^[^#].*el$"))) -(message "%s" "Emacs Prelude is ready to do thy bidding, Master!") +(message "Emacs Prelude is ready to do thy bidding, Master, %s!" + (getenv "USER")) ;;; init.el ends here