plugins/lilypond-suite: init

This commit is contained in:
Gaetan Lepage 2025-04-20 23:59:36 +02:00
parent 6c4e2d9279
commit 490bb4e2bd
2 changed files with 190 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lilypond-suite";
packPathName = "nvim-lilypond-suite";
package = "nvim-lilypond-suite";
moduleName = "nvls";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsExample = {
lilypond = {
mappings = {
player = "<F3>";
compile = "<F5>";
open_pdf = "<F6>";
switch_buffers = "<F2>";
insert_version = "<F4>";
};
options = {
pitches_language = "default";
output = "pdf";
include_dir = [
"./openlilylib"
];
};
};
};
}