view .emacs @ 89:f34d90569fdc

Add a file for local functions not yet extracted into a module. Includes a function to run pyflakes on the current buffer.
author Augie Fackler <durin42@gmail.com>
date Fri, 17 Apr 2009 10:27:20 -0500
parents 45d7441d0cf2
children 8aa70b521063
line wrap: on
line source

;; Augie Fackler's .emacs file
; Places I've stolen from:
;  Karl Fogel: http://svn.red-bean.com/repos/kfogel/trunk
;  Dave Anderson:

(add-to-list 'load-path (expand-file-name "~/.elisp"))

; Start the server so that emacsclient will work
; TODO: is there a way to *not* start a server if one was already running?
(server-start)

(let ((settings-files (concat (getenv "HOME") "/.elisp/settings")))
  (mapc '(lambda (p) (load (concat settings-files "/" p)))
	(directory-files settings-files nil ".*el$")))

(if (file-regular-p (expand-file-name (concat (getenv "HOME")
                                              "/.emacs-machine.el")))
    (load (expand-file-name "~/.emacs-machine.el")))