1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/plugins/by-name/lilypond-suite/default.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

28 lines
624 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lilypond-suite";
package = "nvim-lilypond-suite";
moduleName = "nvls";
description = "Neovim plugin for writing LilyPond scores.";
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"
];
};
};
};
}