Last active
December 30, 2015 22:29
-
-
Save eclairevoyant/400027009acc9de8aa31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
post_install() { | |
cat <<EOF | |
==> Change your .emacs to make use of lyqi: | |
;; load lyqi | |
(require 'lyqi) | |
;; automatically use lyqi mode when editing .ly and .ily files | |
(add-to-list 'auto-mode-alist '("\\\\.ly$" . lyqi-mode)) | |
(add-to-list 'auto-mode-alist '("\\\\.ily$" . lyqi-mode)) | |
EOF | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment