.emacs
changeset 773 9308a0c91624
parent 765 bbeae3f53afa
child 1198 81709141a539
--- a/.emacs	Mon Nov 07 02:25:36 2011 +0200
+++ b/.emacs	Mon Nov 07 02:47:12 2011 +0200
@@ -33,6 +33,8 @@
 
 (defvar my-autoload (concat my-lisp-dir "/autoload-my.el")
   "Path to autoload for mode files.")
+(defvar my-auth (expand-file-name "~/.emacs-auth")
+  "Path to auth info for Emacs.")
 (defvar dot-emacs-autogen (expand-file-name "~/.emacs-autogen")
   "Path to automatically generated config file. It content depend on
   installation environment and it was overridden on install.")
@@ -45,6 +47,9 @@
 (if (file-exists-p dot-emacs-autogen)
     (load dot-emacs-autogen))
 
+(if (file-exists-p my-auth)
+    (load my-auth))
+
 ;; pre-load custom settings
 (if (file-exists-p dot-emacs-pre)
     (load dot-emacs-pre))