(custom-set-variables
'(c-basic-offset (quote set-from-style))
'(c-default-style (quote ((java-mode . "java") (other . "gnu"))))
'(c-echo-syntactic-information-p nil)
'(c-strict-syntax-p nil)
'(c-syntactic-indentation t)
'(cperl-brace-offset -2)
'(global-font-lock-mode t nil (font-lock))
'(indent-tabs-mode nil)
'(make-backup-files nil)
'(perl-continued-brace-offset -2)
'(perl-continued-statement-offset 2)
'(perl-indent-level 2)
'(standard-indent 2)
'(tab-always-indent nil)
'(tab-width 2))
(custom-set-faces
'(default ((t (:stipple nil :background "black" :foreground "green" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight bold :height 150 :width normal :family "adobe-courier"))))
'(cperl-array-face ((t (:foreground "yellow" :weight bold))))
'(cperl-hash-face ((t (:foreground "magenta" :weight bold))))
'(nxml-attribute-local-name-face ((t (:inherit nxml-name-face :foreground "chocolate"))))
'(nxml-attribute-value-face ((t (:inherit nxml-delimited-data-face :foreground "salmon"))))
'(nxml-name-face ((nil (:foreground "cornflower blue"))))
'(nxml-namespace-attribute-xmlns-face ((t (:inherit nxml-name-face))))
'(nxml-ref-face ((nil (:foreground "gold")))))
(add-to-list 'auto-mode-alist '("\\.\\([pP][Llm]\\|al\\)\\'" . cperl-mode))
(add-to-list 'interpreter-mode-alist '("perl" . cperl-mode))
(add-to-list 'interpreter-mode-alist '("perl5" . cperl-mode))
(add-to-list 'interpreter-mode-alist '("miniperl" . cperl-mode))
(put 'narrow-to-region 'disabled nil)
(load "~/build/nxml-mode-20031031/rng-auto.el")
(setq auto-mode-alist (cons '("\\.\\(xml\\|xsl\\|rng\\|xhtml\\)\\'" . nxml-mode) auto-mode-alist))
(autoload 'LilyPond-mode "lilypond-mode" "LilyPond Editing Mode" t)
(add-to-list 'auto-mode-alist '("\\.ly$" . LilyPond-mode))
(add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock)))