set nocompatible set number set showmode filetype plugin indent on autocmd BufNewFile,BufRead *.ly set ft=lilypond autocmd BufNewFile,BufRead *.abc set ft=abc autocmd FileType lilypond nnoremap :w exe '!lilypond --output '.shellescape('%:r').' '.shellescape('%') autocmd FileType lilypond,abc nnoremap :w exe '!SDL_NOMOUSE=1 green '.shellescape('%:r').'.pdf' autocmd FileType lilypond,abc nnoremap :w exe '!timidity --config-file=./timidity_custom.cfg '.shellescape('%:r').'.midi' autocmd FileType lilypond,abc nnoremap :w exe '!timidity --config-file=./timidity_custom.cfg '.shellescape('%:r').'.midi -Ow' autocmd FileType abc nnoremap :w exe '!abcm2ps '.shellescape('%:p').' -O '.shellescape('%:r').'.ps' exe '!ps2pdfwr '.shellescape('%:r').'.ps '.shellescape('%:r').'.pdf' exe '!abc2midi '.shellescape('%:p').' -o '.shellescape('%:r').'.midi'