| changeset 66: | 5b737eefe5ea |
| parent: | d9cd808b8d7f |
| author: | kim.vanwyk |
| date: | Wed Nov 10 15:19:03 2010 +0200 (18 months ago) |
| permissions: | -rw-r--r-- |
| description: | Adding CSharp Mode and Google Weather |
1;; Functions for customise file and private data handling3;; Load custom file4(load "~/emacs/lisp/addons/custom.el" t)5(setq custom-file "~/emacs/lisp/addons/custom.el")7;; private-location is a variable which must already be defined8;; ~/.emacs is a good location for this9;; Load private functions and data10(if (file-exists-p private-location)11 (progn12 (add-to-list 'load-path (file-name-directory private-location))13 (load "private.el")14 ;; Set up private twitter-mode details15 (priv-twitter-mode-setup)16 ))18(provide 'de_cust_priv)