changelog shortlog tags changeset files revisions annotate raw

de_cust_priv.el

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 handling
2
3;; Load custom file
4(load "~/emacs/lisp/addons/custom.el" t)
5(setq custom-file "~/emacs/lisp/addons/custom.el")
6
7;; private-location is a variable which must already be defined
8;; ~/.emacs is a good location for this
9;; Load private functions and data
10(if (file-exists-p private-location)
11 (progn
12 (add-to-list 'load-path (file-name-directory private-location))
13 (load "private.el")
14 ;; Set up private twitter-mode details
15 (priv-twitter-mode-setup)
16 ))
17
18(provide 'de_cust_priv)