; .emacs ; personal configuration of emacs ; the main thing: pull in all the stuff I intend to be common ; between myself and others who borrow my settings (if (file-readable-p "~/elisp/scott.emacs.el") (load-file "~/elisp/scott.emacs.el")) ; then, grab personal M-x customize settings (if (file-readable-p "~/elisp/cust.settings.el") (load-file "~/elisp/cust.settings.el")) ; anything site-specific and not indended for redist (if (file-readable-p "~/.emacs-site.el") (load-file "~/.emacs-site.el")) ; finally, any personal settings can go here ; set the initial window location ;(sleep-for 1) (frame-occupy-normal-position) (if version-xemacs ; I need to do it again? it jumps around a bit but eventually ; ends up in the right place... (frame-occupy-normal-position)) (put 'downcase-region 'disabled nil) ; xemacs added this trash.. ;(custom-set-variables ; '(load-home-init-file t t)) ;(custom-set-faces) ; cqual added some trash here. I'm going to prevent it from ; doing so again by saying: pam-analyze-file ; ; if I want it again, 'setup-pam' in the cqual directory ; will do it