repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.4.2
[lilypond.git]
/
lilypond-init.el
blob
98beddabc54bb60ab3e02711f6b6162cb60b7a47
1
;; install this into emacs site-start.d/
2
3
(
autoload
'
LilyPond-mode
"lilypond-mode"
)
4
(
setq
auto-mode-alist
5
(
cons
'(
"
\\
.ly$"
. LilyPond-mode
)
auto-mode-alist
))
6
7
(
add-hook
'
LilyPond-mode-hook
(
lambda
() (
turn-on-font-lock
)))
8
9
10
11