Project Awesome project awesome

lilypond-mode

default emacs mode for lilypond editing.

Package 7 stars GitHub
  • Emacs Configuration

** How it works

** The martyn.el file within ~/.emacs.d

#+BEGIN_SRC emacs-lisp

;; start of martyn.el

;; This file is loaded 'naturally' by init.el, which is the standard ;; emacs starter kit init.el. ;; ;; This file then loads and runs init.org using babel to make ;; my personal configurations. ;; ;; NOTE:- no configuration should go in this file or in init.el ;;

;; Ensure my auto-generated init.el file does not yet exist! ;; This may have occurred if there was a load failure previously.

(if (file-exists-p "/.emacs.d/martyn/init.el") (delete-file "/.emacs.d/martyn/init.el"))

;; Load init.org using org-babel...

(require 'org-install) (org-babel-load-file "~/.emacs.d/martyn/init.org")

;; end of martyn.el

#+END_SRC

Back to Emacs