hephaestus /.emacs

I never use emacs, but, just in case, you know.
(server-start)
(fset 'vert_split
   "\C-x3\C-u25\C-x}")
(fset 'hor_split
   "\C-x2\C-x\C-b\C-u13\C-x^")
(autoload 'LilyPond-mode "lilypond-mode" "LilyPond Editing Mode" t)
(add-to-list 'auto-mode-alist '("\\.ly$" . LilyPond-mode))
(add-to-list 'auto-mode-alist '("\\.ily$" . LilyPond-mode))
(add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock)))
(setq transient-mark-mode t)

(setq load-path (append (list (expand-file-name "/Users/jamesebailey/share/emacs/site-lisp/")) load-path))
(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(standard-indent 3)
 '(tab-always-indent (quote always))
 '(utf-fragment-on-decoding t))
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )

;; Darwinports and other paths, since my .bashrc is not being read
(add-to-list 'load-path (expand-file-name "elisp" (getenv "HOME")))
(setq exec-path (split-string "/Users/jamesebailey/bin:/bin:/sbin:/usr/bin:/usr/local/bin:/usr/sbin" path-separator))
(setenv "PATH" (mapconcat 'identity exec-path ":"))
(setenv "MANPATH" "/Users/jamesebailey/share/man:/usr/share/man:/usr/X11R6/man:/man")
(setenv "INFOPATH" "/Users/jamesebailey/share/info:/usr/local/info:/usr/local/share/info:/usr/share/info")