Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 628 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 628 Bytes

vim-textbeat

Write music in vim using textbeat

This is only the plug-in repo. The backend code is in the repo above.

Screenshot

WORK IN PROGRESS

Install

Install as a vim plugin.

Clone textbeat.

Run textbeat's setup.py to install dependencies and make textbeat python module available. Must use python3!

And add the txbt path to your vimrc:

if has('win32')
    let g:textbeat_path = 'path-to-textbeat/txbt.cmd'
else
    let g:textbeat_path = 'path-to-textbeat/txbt'
endif