1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-30 22:21:04 +01:00
nixvim/plugins/by-name/lilypond-suite/default.nix

29 lines
664 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "lilypond-suite";
packPathName = "nvim-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"
];
};
};
};
}